Skip to content

Commit

Permalink
chore: set node version to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
aziolek committed May 11, 2024
1 parent be5fda5 commit f429a6e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ jobs:
export VITE_JSON_RPC_ENDPOINT=${{ needs.deploy-e2e-env.outputs.anvil-rpc-url }}
export VITE_SERVER_ENDPOINT=${{ needs.deploy-e2e-env.outputs.octant-backend-url }}/
# Setup NVM to use Node version 18
# Setup NVM to use Node version 20
set +x
source /usr/share/nvm/init-nvm.sh
nvm install 18
nvm use 18
nvm install 20
nvm use 20
set -x
npm i -g yarn
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
runs-on:
- general
container:
image: registry.gitlab.com/golemfoundation/devops/container-builder/octant/node-extended:3e291b83
image: registry.gitlab.com/golemfoundation/devops/container-builder/octant/node-extended:d984811a
credentials:
username: "doesnt-matter"
password: "${{ secrets.GITLAB_PAT_CONTAINER_BUILDER_DOCKER_IMAGES_READ }}"
Expand Down Expand Up @@ -369,7 +369,7 @@ jobs:
runs-on:
- general
container:
image: registry.gitlab.com/golemfoundation/devops/container-builder/octant/node-extended:3e291b83
image: registry.gitlab.com/golemfoundation/devops/container-builder/octant/node-extended:d984811a
credentials:
username: "doesnt-matter"
password: "${{ secrets.GITLAB_PAT_CONTAINER_BUILDER_DOCKER_IMAGES_READ }}"
Expand Down Expand Up @@ -420,7 +420,7 @@ jobs:
runs-on:
- general
container:
image: registry.gitlab.com/golemfoundation/devops/container-builder/octant/node-extended:3e291b83
image: registry.gitlab.com/golemfoundation/devops/container-builder/octant/node-extended:d984811a
credentials:
username: "doesnt-matter"
password: "${{ secrets.GITLAB_PAT_CONTAINER_BUILDER_DOCKER_IMAGES_READ }}"
Expand Down Expand Up @@ -478,7 +478,7 @@ jobs:
needs:
- permissions-check
container:
image: registry.gitlab.com/golemfoundation/devops/container-builder/octant/node-extended:3e291b83
image: registry.gitlab.com/golemfoundation/devops/container-builder/octant/node-extended:d984811a
credentials:
username: "doesnt-matter"
password: "${{ secrets.GITLAB_PAT_CONTAINER_BUILDER_DOCKER_IMAGES_READ }}"
Expand Down
2 changes: 1 addition & 1 deletion ci/Dockerfile.client
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM local-docker-registry.wildland.dev:80/library/node:18-alpine
FROM local-docker-registry.wildland.dev:80/library/node:20-alpine

WORKDIR /app
COPY package.json yarn.lock ./
Expand Down
2 changes: 1 addition & 1 deletion ci/Dockerfile.coin-prices-server
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM local-docker-registry.wildland.dev:80/library/node:16-alpine AS root
FROM local-docker-registry.wildland.dev:80/library/node:20-alpine AS root

WORKDIR /app
COPY package.json yarn.lock ./
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
"**/cypress": "13.8.1"
},
"engines": {
"node": ">=18"
"node": ">=20"
},
"lint-staged": {
"./**/*.js": [
Expand Down
2 changes: 1 addition & 1 deletion coin-prices-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"typescript": "^5.0.2"
},
"engines": {
"node": ">=18"
"node": ">=20"
},
"lint-staged": {
"./**/*.js": [
Expand Down

0 comments on commit f429a6e

Please sign in to comment.