Skip to content

Commit 8303ba4

Browse files
committed
Migrate to node 20
1 parent 888fb1e commit 8303ba4

15 files changed

+24
-24
lines changed

.github/actions/build-node/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: datavisyn
55
inputs:
66
node_version:
77
description: "node version to use"
8-
default: "16.16"
8+
default: "20.9"
99
required: true
1010
github_ro_token:
1111
description: "github read-only token"

.github/workflows/build-node-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ on:
7070

7171
env:
7272
NPM_REGISTRY: "https://registry.npmjs.org/"
73-
NODE_VERSION: "16.16"
73+
NODE_VERSION: "20.9"
7474
PYPI_REGISTRY: "https://upload.pypi.org/legacy/"
7575
PYPI_USERNAME: "datavisyn"
7676
PYTHON_VERSION: "3.10"
77-
WORKFLOW_BRANCH: "new_deployment"
77+
WORKFLOW_BRANCH: "new_deployment_node_20"
7878

7979
permissions:
8080
contents: read

.github/workflows/build-node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ on:
1515

1616
env:
1717
NPM_REGISTRY: "https://registry.npmjs.org/"
18-
NODE_VERSION: "16.16"
19-
WORKFLOW_BRANCH: "new_deployment"
18+
NODE_VERSION: "20.9"
19+
WORKFLOW_BRANCH: "new_deployment_node_20"
2020

2121
permissions:
2222
contents: read

.github/workflows/build-product.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ concurrency:
2828

2929
env:
3030
TIME_ZONE: "Europe/Vienna"
31-
NODE_VERSION: "16.16"
31+
NODE_VERSION: "20.9"
3232
PYTHON_VERSION: "3.10"
33-
WORKFLOW_BRANCH: "new_deployment"
33+
WORKFLOW_BRANCH: "new_deployment_node_20"
3434
PYTHON_BASE_IMAGE: "python:3.10.8-slim-bullseye"
3535
DATAVISYN_PYTHON_BASE_IMAGE: "188237246440.dkr.ecr.eu-central-1.amazonaws.com/datavisyn/base/python:main"
3636
DATAVISYN_NGINX_BASE_IMAGE: "188237246440.dkr.ecr.eu-central-1.amazonaws.com/datavisyn/base/nginx:main"
@@ -93,7 +93,7 @@ jobs:
9393
fail-fast: true
9494
matrix:
9595
component: ${{fromJson(needs.prepare-build.outputs.components)}}
96-
uses: datavisyn/github-workflows/.github/workflows/build-single-product-part.yml@new_deployment
96+
uses: datavisyn/github-workflows/.github/workflows/build-single-product-part.yml@new_deployment_node_20
9797
with:
9898
component: ${{ matrix.component }}
9999
image_tag1: ${{ needs.prepare-build.outputs.image_tag1 }}
@@ -108,7 +108,7 @@ jobs:
108108
fail-fast: true
109109
matrix:
110110
component: ${{fromJson(needs.prepare-build.outputs.components)}}
111-
uses: datavisyn/github-workflows/.github/workflows/build-workspace-product-part.yml@new_deployment
111+
uses: datavisyn/github-workflows/.github/workflows/build-workspace-product-part.yml@new_deployment_node_20
112112
with:
113113
component: ${{ matrix.component }}
114114
image_tag1: ${{ needs.prepare-build.outputs.image_tag1 }}

.github/workflows/build-push-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ permissions:
3434
contents: read
3535

3636
env:
37-
WORKFLOW_BRANCH: "new_deployment"
37+
WORKFLOW_BRANCH: "new_deployment_node_20"
3838

3939
jobs:
4040
build:

.github/workflows/build-push-helm-chart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ permissions:
2424
contents: read
2525

2626
env:
27-
WORKFLOW_BRANCH: "new_deployment"
27+
WORKFLOW_BRANCH: "new_deployment_node_20"
2828

2929
concurrency:
3030
group: '${{ github.workflow }}-${{ github.ref || github.head_ref }}'

.github/workflows/build-single-product-part.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ on:
4646
type: string
4747
env:
4848
TIME_ZONE: "Europe/Vienna"
49-
NODE_VERSION: "16.16"
49+
NODE_VERSION: "20.9"
5050
PYTHON_VERSION: "3.10"
51-
WORKFLOW_BRANCH: "new_deployment"
51+
WORKFLOW_BRANCH: "new_deployment_node_20"
5252
PYTHON_BASE_IMAGE: "python:3.10.8-slim-bullseye"
5353
DATAVISYN_PYTHON_BASE_IMAGE: "188237246440.dkr.ecr.eu-central-1.amazonaws.com/datavisyn/base/python:main"
5454
DATAVISYN_NGINX_BASE_IMAGE: "188237246440.dkr.ecr.eu-central-1.amazonaws.com/datavisyn/base/nginx:main"

.github/workflows/build-workspace-product-part.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ on:
4747
env:
4848
VISYN_SCRIPTS_VERSION: "develop"
4949
TIME_ZONE: "Europe/Vienna"
50-
NODE_VERSION: "16.16"
50+
NODE_VERSION: "20.9"
5151
PYTHON_VERSION: "3.10"
52-
WORKFLOW_BRANCH: "new_deployment"
52+
WORKFLOW_BRANCH: "new_deployment_node_20"
5353
PYTHON_BASE_IMAGE: "python:3.10.8-slim-bullseye"
5454
DATAVISYN_PYTHON_BASE_IMAGE: "188237246440.dkr.ecr.eu-central-1.amazonaws.com/datavisyn/base/python:main"
5555
DATAVISYN_NGINX_BASE_IMAGE: "188237246440.dkr.ecr.eu-central-1.amazonaws.com/datavisyn/base/nginx:main"

.github/workflows/check-helm-chart-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ permissions:
2323
contents: read
2424

2525
env:
26-
WORKFLOW_BRANCH: "new_deployment"
26+
WORKFLOW_BRANCH: "new_deployment_node_20"
2727

2828
jobs:
2929
check-helm-chart-version:

.github/workflows/deploy-product.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ concurrency:
4848

4949
env:
5050
GA_VERSION: "main"
51-
WORKFLOW_BRANCH: "new_deployment"
51+
WORKFLOW_BRANCH: "new_deployment_node_20"
5252

5353
jobs:
5454
deploy:

0 commit comments

Comments
 (0)