From 8857b0517b5d6e415a569bcce3644c0954fb706b Mon Sep 17 00:00:00 2001 From: Jon C Date: Fri, 18 Oct 2024 11:44:57 +0200 Subject: [PATCH] CI: Update token-group and token-metadata JS jobs to Node 20 (#7365) #### Problem The token-group and token-metadata JS packages now require at least Node v19, but the specific workflows only use v16. #### Summary of changes Update the CI job to v20. --- .github/workflows/pull-request-libraries.yml | 2 +- .github/workflows/pull-request-token-group.yml | 2 +- .github/workflows/pull-request-token-metadata.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request-libraries.yml b/.github/workflows/pull-request-libraries.yml index 2b4eeef1e33..256dacd2586 100644 --- a/.github/workflows/pull-request-libraries.yml +++ b/.github/workflows/pull-request-libraries.yml @@ -66,7 +66,7 @@ jobs: js-test: runs-on: ubuntu-latest env: - NODE_VERSION: 20.5 + NODE_VERSION: 20.x steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ env.NODE_VERSION }} diff --git a/.github/workflows/pull-request-token-group.yml b/.github/workflows/pull-request-token-group.yml index 14064133e02..2e1ef89ef93 100644 --- a/.github/workflows/pull-request-token-group.yml +++ b/.github/workflows/pull-request-token-group.yml @@ -74,7 +74,7 @@ jobs: js-test: runs-on: ubuntu-latest env: - NODE_VERSION: 16.x + NODE_VERSION: 20.x steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ env.NODE_VERSION }} diff --git a/.github/workflows/pull-request-token-metadata.yml b/.github/workflows/pull-request-token-metadata.yml index 8c944f0f955..3ec26f79970 100644 --- a/.github/workflows/pull-request-token-metadata.yml +++ b/.github/workflows/pull-request-token-metadata.yml @@ -75,7 +75,7 @@ jobs: js-test: runs-on: ubuntu-latest env: - NODE_VERSION: 16.x + NODE_VERSION: 20.x steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ env.NODE_VERSION }}