Skip to content

Commit

Permalink
ci: drop support for Node 16, add support for Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
tadayosi committed Oct 30, 2023
1 parent efada36 commit 71f868b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['16', '18']
node: ['18', '20']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Enable yarn v3
- name: Enable yarn v4
run: |
corepack enable
yarn -v
Expand Down

0 comments on commit 71f868b

Please sign in to comment.