Skip to content

Commit 05c8576

Browse files
dependabot[bot]bcomnes
authored andcommitted
Bump actions/setup-node from 3 to 4
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v3...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent b303e94 commit 05c8576

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
no-lockfile: true
2626
npm-test-script: 'test-ci'
27-
node-versions: '14,16,18,19'
27+
node-versions: '18,20,22,23,24'
2828
# We currently have some issues on Windows that will have to wait to be fixed
2929
# os: 'ubuntu-latest,windows-latest'
3030
os: 'ubuntu-latest'

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
required: true
99

1010
env:
11-
node_version: "19"
11+
node_version: "lts/*"
1212
FORCE_COLOR: 1
1313

1414
concurrency: # prevent concurrent releases
@@ -27,7 +27,7 @@ jobs:
2727
# fetch full history so things like auto-changelog work properly
2828
fetch-depth: 0
2929
- name: Use Node.js ${{ env.node_version }}
30-
uses: actions/setup-node@v3
30+
uses: actions/setup-node@v4
3131
with:
3232
node-version: ${{ env.node_version }}
3333
# setting a registry enables the NODE_AUTH_TOKEN env variable where we can set an npm token. REQUIRED

0 commit comments

Comments
 (0)