Skip to content

Commit

Permalink
ci: update node (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Mar 25, 2024
1 parent 8da4fb0 commit a97a122
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-and-cache/action.yml
Expand Up @@ -5,7 +5,7 @@ inputs:
node-version:
required: false
description: 'Node version for setup-node'
default: '18'
default: '20'
runs:
using: 'composite'
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/all-plugins.yml
Expand Up @@ -9,5 +9,5 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: 'echo done'
2 changes: 1 addition & 1 deletion .github/workflows/check-for-private-repositories.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: |
yarn install
yarn build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-and-cache
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-and-cache
Expand All @@ -69,7 +69,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-and-cache
Expand All @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-and-cache
Expand Down
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: yarn install
name: Install eslint-remote-tester
- run: yarn install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-eslint-remote-tester.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
registry-url: 'https://registry.npmjs.org'

- name: Install
Expand Down

0 comments on commit a97a122

Please sign in to comment.