Skip to content

Commit

Permalink
ci: update Node.js to v20
Browse files Browse the repository at this point in the history
  • Loading branch information
kizahasi committed Oct 25, 2024
1 parent 009fa24 commit c81845f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: yarn

- run: git config --local user.email "auto-build.yml[bot]@example.com" # fake user email for pushing build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Use Node 18.x
- name: Use Node 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: yarn

- run: yarn
Expand Down Expand Up @@ -262,10 +262,10 @@ jobs:
# Requires full git history: https://github.com/chromaui/action#getting-started
fetch-depth: 0

- name: Use Node 18.x
- name: Use Node 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: yarn

- run: yarn
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:

- uses: actions/checkout@v4

- name: Use Node 18.x
- name: Use Node 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: yarn

- run: yarn
Expand Down

0 comments on commit c81845f

Please sign in to comment.