Skip to content

Commit

Permalink
Github actions use node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
IanPhilips committed Sep 19, 2024
1 parent 17ba6d2 commit 18ba4d4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Node 18
- name: Install Node 20
uses: actions/setup-node@v4
env:
FORCE_COLOR: 0 # https://github.com/actions/setup-node/issues/317
with:
node-version: 18
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --prefer-offline --frozen-lockfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
uses: actions/checkout@v3
with:
token: ${{ secrets.FORMATTER_ACCESS_TOKEN }}
- name: Install Node 18
- name: Install Node 20
uses: actions/setup-node@v4
env:
FORCE_COLOR: 0 # https://github.com/actions/setup-node/issues/317
with:
node-version: 18
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --prefer-offline --frozen-lockfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
uses: actions/checkout@v3
with:
token: ${{ secrets.FORMATTER_ACCESS_TOKEN }}
- name: Install Node 18
- name: Install Node 20
uses: actions/setup-node@v4
env:
FORCE_COLOR: 0 # https://github.com/actions/setup-node/issues/317
with:
node-version: 18
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --prefer-offline --frozen-lockfile
Expand Down

0 comments on commit 18ba4d4

Please sign in to comment.