Skip to content

Commit 0d3170d

Browse files
authored
Merge pull request #40 from SocketDev/dependabot/github_actions/actions/setup-node-4
Bump actions/setup-node from 3 to 4
2 parents b303e94 + 05c8576 commit 0d3170d

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)