Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix deprecated Node 16 installer
Browse files Browse the repository at this point in the history
  • Loading branch information
chase committed Feb 23, 2024
1 parent 69494e9 commit b2c95b0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,10 @@ jobs:
tar --zstd --overwrite -xf "$EL_WORKSPACE/windows.tzstd"
;;
esac
- name: Linux - Install node.js v16
if: ${{ runner.os == 'Linux' }}
run: |
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs
- name: Setup Node v16
uses: actions/setup-node@v3
with:
node-version: 16
- name: Linux - Install zip
if: ${{ runner.os == 'Linux' }}
run: |
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/fetch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,10 @@ jobs:
id: check_cache
run: |
echo "build_cache=${{ steps.cache-src-base.outputs.cache-hit != 'true' || steps.cache-src-linux.outputs.cache-hit != 'true' || steps.cache-src-windows.outputs.cache-hit != 'true' }}" >> $GITHUB_OUTPUT
- name: Install node.js v16
if: ${{ runner.os == 'Linux' }}
run: |
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs
- name: Setup Node v16
uses: actions/setup-node@v3
with:
node-version: 16
- name: Create tarballs for all platforms
if: ${{ runner.os == 'Linux' && steps.check_cache.outputs.build_cache == 'true' }}
run: |
Expand Down

0 comments on commit b2c95b0

Please sign in to comment.