Skip to content

Commit 3653a76

Browse files
Autoupdating node version in GitHub workflows via utility
1 parent e8b15b3 commit 3653a76

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,17 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: '24.13.0'
18+
node-version: '24.14.0'
1919
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2020

2121
steps:
2222
- uses: actions/checkout@v3
2323
- name: Use Node.js ${{ matrix.node-version }}
2424
uses: actions/setup-node@v3
2525
with:
26-
node-version: '24.13.0'
26+
node-version: '24.14.0'
2727
cache: 'npm'
2828
- run: npm ci
2929
- run: npm test
3030

31+

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Node.js
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: '24.13.0'
23+
node-version: '24.14.0'
2424
registry-url: "https://registry.npmjs.org"
2525

2626
- name: Install dependencies
@@ -32,3 +32,4 @@ jobs:
3232
- name: Publish to npm
3333
run: npm run publish
3434

35+

0 commit comments

Comments
 (0)