Skip to content

Commit

Permalink
Update Node to v16 (#3957)
Browse files Browse the repository at this point in the history
* Update node to 16

Signed-off-by: Matthieu MOREL <[email protected]>

* Update node to 16

Signed-off-by: Matthieu MOREL <[email protected]>

* Update node to 16

Signed-off-by: Matthieu MOREL <[email protected]>

* Update node to 16

Signed-off-by: Matthieu MOREL <[email protected]>

Signed-off-by: Matthieu MOREL <[email protected]>
  • Loading branch information
mmorel-35 authored Oct 9, 2022
1 parent 878992a commit 2e8c6b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-all-in-one-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '10'
node-version: '16'

- name: Export BRANCH variable
uses: ./.github/actions/setup-branch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '10'
node-version: '16'

- name: Export BRANCH variable
uses: ./.github/actions/setup-branch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '10'
node-version: '16'

- name: Export BRANCH variable
uses: ./.github/actions/setup-branch
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-all-in-one-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ BRANCH=${BRANCH:?'missing BRANCH env var'}
# `GOARCH=<target arch> ./scripts/build-all-in-one-image.sh`.
GOARCH=${GOARCH:-$(go env GOARCH)}

expected_version="v10"
expected_version="v16"
version=$(node --version)
major_version=${version%.*.*}
if [ "$major_version" = "$expected_version" ] ; then
Expand Down

0 comments on commit 2e8c6b2

Please sign in to comment.