Skip to content

Commit 35b8926

Browse files
authored
Merge pull request #146 from funktechno/dependabot/github_actions/actions/setup-node-6
Bump actions/setup-node from 3 to 6
2 parents aea9927 + ff4cd8b commit 35b8926

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ jobs:
8787
path: version-${{ steps.extract-version.outputs.VERSION }}.txt
8888
retention-days: ${{ env.retention_days }}
8989
# Setup .npmrc file to publish to npm
90-
- uses: actions/setup-node@v3
90+
- uses: actions/setup-node@v6
9191
with:
92-
node-version: '16.x'
92+
node-version: 16
9393
registry-url: 'https://registry.npmjs.org'
9494
- run: npm ci
9595
- run: npm run build

.github/workflows/tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ jobs:
9090
name: version-info
9191
path: version-${{ steps.extract-version.outputs.VERSION }}.txt
9292
retention-days: ${{ env.retention_days }}
93-
- uses: actions/setup-node@v3
93+
- uses: actions/setup-node@v6
9494
with:
95-
node-version: current
95+
node-version: 16
9696
- run: npm ci
9797
- run: npm test
9898
- name: upload junit
@@ -138,4 +138,4 @@ jobs:
138138
with:
139139
token: ${{ secrets.GITHUB_TOKEN }}
140140
merge-method: squash
141-
pull-request-number: ${{ github.event.pull_request.number }}
141+
pull-request-number: ${{ github.event.pull_request.number }}

0 commit comments

Comments
 (0)