Skip to content

Commit b38b277

Browse files
authored
fix: use Node.js LTS version in workflow (#803)
`@node-core/utils` doesn't support Node.js 16 anymore.
1 parent 7c609fe commit b38b277

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/reliability_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
create-report:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/setup-node@v3
18+
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 16
20+
node-version: lts/*
2121
- run: npm i -g @node-core/utils
2222
- run: ncu-config --global set jenkins_token ${{ secrets.JENKINS_TOKEN }}
2323
- run: ncu-config --global set token ${{ secrets.USER_TOKEN }}

0 commit comments

Comments
 (0)