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