Skip to content

Commit ee2122d

Browse files
author
Loïc Mangeonjean
committed
lib: update node/npm/github actions
1 parent 2120194 commit ee2122d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/check_build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
name: Lint commits
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
# we actually need "github.event.pull_request.commits + 1" commit
1515
fetch-depth: 0
16-
- uses: actions/setup-node@v4
16+
- uses: actions/setup-node@v6
1717
- run: npm ci
1818
- run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
1919
check:
@@ -22,13 +22,13 @@ jobs:
2222

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0
2828
- name: Setup Node.js
29-
uses: actions/setup-node@v4
29+
uses: actions/setup-node@v6
3030
with:
31-
node-version: 20.10.0
31+
node-version: 25.2.0
3232
- name: Install dependencies
3333
run: npm ci
3434
- name: Build

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99

1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: Setup Node.js
14-
uses: actions/setup-node@v4
14+
uses: actions/setup-node@v6
1515
with:
16-
node-version: 20.10.0
16+
node-version: 25.2.0
1717
- name: Install dependencies
1818
run: npm ci
1919
- name: Build

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"prettier": "^3.6.2"
4646
},
4747
"volta": {
48-
"node": "20.10.0",
49-
"npm": "10.4.0"
48+
"node": "25.2.0",
49+
"npm": "11.6.2"
5050
}
5151
}

0 commit comments

Comments
 (0)