Skip to content

Commit 2d51602

Browse files
committed
Use wget instead of curl to install Node
1 parent aa5c3e7 commit 2d51602

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ jobs:
171171
distro: ubuntu22.04
172172
dockerRunArgs: --volume "${PWD}:/repo" --workdir /repo
173173
install: |
174-
apt install -yq curl
175-
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
174+
apt update -yq && apt install -yq wget
175+
wget -qL https://deb.nodesource.com/setup_20.x | bash -
176176
apt install -yq g++ git make python3 nodejs
177177
run: |
178178
npm ci

0 commit comments

Comments
 (0)