From 67342bf5cc72817731e7bb1c2e14068838b0959c Mon Sep 17 00:00:00 2001 From: Gallay Lajos Date: Fri, 3 Nov 2023 12:27:47 +0100 Subject: [PATCH] adjusted node versions --- .github/workflows/build-test.yml | 2 +- .github/workflows/check-version-bump.yml | 2 +- .github/workflows/e2e.yml | 2 +- .github/workflows/publish-to-dockerhub.yml | 4 ++-- azure-pipelines.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 468e0dd7..1f1dc424 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - node-version: [19.x] + node-version: [20.x] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/check-version-bump.yml b/.github/workflows/check-version-bump.yml index 1980363e..3ce08e38 100644 --- a/.github/workflows/check-version-bump.yml +++ b/.github/workflows/check-version-bump.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [19.x] + node-version: [20.x] steps: - name: Checkout diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 6aaee5cd..ee1e43d3 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - node-version: [19.x] + node-version: [20.x] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/publish-to-dockerhub.yml b/.github/workflows/publish-to-dockerhub.yml index a25b0916..5fc55aae 100644 --- a/.github/workflows/publish-to-dockerhub.yml +++ b/.github/workflows/publish-to-dockerhub.yml @@ -21,10 +21,10 @@ jobs: uses: docker/setup-buildx-action@v2 with: install: true - - name: Use Node.js 19.x + - name: Use Node.js 20.x uses: actions/setup-node@v2 with: - node-version: 19.x + node-version: 20.x - uses: actions/checkout@v3 # to prevent separate installs per architecture - name: Yarn install diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2dfd5009..40d58089 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -17,7 +17,7 @@ pool: steps: - task: NodeTool@0 inputs: - versionSpec: '19.x' + versionSpec: '20.x' displayName: 'Install Node.js' - script: yarn install displayName: 'Yarn install'