Skip to content

Commit

Permalink
Upgrade used actions for the transition to Node.js 20
Browse files Browse the repository at this point in the history
  • Loading branch information
ThrRip committed Mar 20, 2024
1 parent e63be33 commit 6aa64e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:
- name: Copy the assets out
run: cp -r mzg.fan-assets/* .
- name: Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: lts/*
check-latest: true
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
tar -cvf build.tar .output ecosystem.config.js
zstd -11 -T0 build.tar
- name: Store the build as an artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-${{ github.ref_name }}_${{ inputs.package }}-${{ github.sha }}
path: packages/${{ inputs.package }}/build.tar.zst
Expand All @@ -97,7 +97,7 @@ jobs:
sudo apt-get update
sudo apt-get -y install rsync
- name: Retrieve the build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-${{ github.ref_name }}_${{ inputs.package }}-${{ github.sha }}
- name: Retrieve the SSH key
Expand Down

0 comments on commit 6aa64e0

Please sign in to comment.