From 4f306e756da17b4e5f314c55c175b0ecc41a497f Mon Sep 17 00:00:00 2001 From: Tadayoshi Sato Date: Mon, 30 Oct 2023 12:35:30 +0900 Subject: [PATCH] ci: drop support for Node 16, add support for Node 20 --- .github/workflows/e2e-test.yml | 2 +- .github/workflows/lint.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index b254f95d..762baf1d 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -24,8 +24,8 @@ jobs: strategy: fail-fast: false matrix: + node: ['18', '20'] java: ['11', '17'] - node: ['16', '18'] runtime: ['springboot', 'quarkus'] browser: ['firefox'] # 'chrome' tests are unstable: https://github.com/hawtio/hawtio-next/issues/478 env: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2b65412d..90ee921d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -21,8 +21,8 @@ jobs: - name: Set up Node uses: actions/setup-node@v4 with: - node-version: 16 - - name: Enable Yarn v3 + node-version: 18 + - name: Enable Yarn v4 run: | corepack enable yarn -v diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 53f1a1a5..cdc4864f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - node: ['16', '18'] + node: ['18', '20'] steps: - name: Checkout code uses: actions/checkout@v4 @@ -26,7 +26,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - - name: Enable yarn v3 + - name: Enable yarn v4 run: | corepack enable yarn -v