Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
maxackerman authored Mar 20, 2024
1 parent 4e8401c commit d8f1714
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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
Expand Down

0 comments on commit d8f1714

Please sign in to comment.