Skip to content

Commit cd4c011

Browse files
committed
chore: bump node version in GH actions
1 parent d983dd2 commit cd4c011

2 files changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/docs-public.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ jobs:
1919
# Steps represent a sequence of tasks that will be executed as part of the job
2020
steps:
2121
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
23+
- uses: actions/setup-node@v6
24+
with:
25+
node-version: 24
2326
- name: Build website
2427
run: cd website && yarn && yarn build
2528
- name: Deploy to GitHub Pages

.github/workflows/test.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,11 @@ on: ["push", "pull_request"]
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
strategy:
12-
matrix:
13-
node-version: [20.x]
14-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1511
steps:
16-
- uses: actions/checkout@v3
17-
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v3
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v6
1914
with:
20-
node-version: ${{ matrix.node-version }}
21-
cache: "yarn"
15+
node-version: 24
2216
- name: yarn install
2317
run: yarn --frozen-lockfile
2418
- name: test

0 commit comments

Comments
 (0)