From d8f17142e8300622e6e7517dcc08d18412523cbb Mon Sep 17 00:00:00 2001 From: Max Ackerman Date: Tue, 19 Mar 2024 22:52:30 -0400 Subject: [PATCH] Update deploy.yml --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a2871c7..0d6ae5a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,11 +14,11 @@ jobs: steps: # Pull repository into the current pipeline - name: pull repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Setup container with private SSH Key (used by rsync) - name: Loads private SSH key - uses: webfactory/ssh-agent@v0.7.0 + uses: webfactory/ssh-agent@v0.9.0 with: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} @@ -27,10 +27,10 @@ jobs: run: composer install --prefer-dist --no-interaction --no-dev --no-progress --optimize-autoloader --ignore-platform-reqs # Use a specific version of Node - - name: Use Node.js 18.x + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: "18.x" + node-version: "20" # Install NPM dependencies - name: NPM install