Skip to content

Commit 60bbc72

Browse files
chore: update deps and github actions (#53)
* chore: update deps and github actions
1 parent b44597d commit 60bbc72

5 files changed

Lines changed: 664 additions & 703 deletions

File tree

.github/workflows/broken-links.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
linkChecker:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v7.0.0
1313
- name: Link Checker
1414
id: lc
15-
uses: lycheeverse/lychee-action@v2
15+
uses: lycheeverse/lychee-action@v2.8.0
1616
with:
1717
args: --insecure --verbose --no-progress './**/*.md' './**/*.html' --accept 200,204,206 --exclude '^http://npmjs\.org' --exclude '^http://www\.npmjs\.com'
1818
- name: Fail?

.github/workflows/sonar-scanner.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,26 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v7.0.0
1818
with:
1919
fetch-depth: 0
2020
- name: Check for external PR
2121
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'safe') ||
2222
github.event.pull_request.head.repo.full_name == github.repository ||
2323
github.event_name != 'pull_request_target') }}
2424
run: echo "Unsecure PR, must be labelled with the 'safe' label, then run the workflow again" && exit 1
25-
- name: Use Node.js 16
26-
uses: actions/setup-node@v1
25+
- name: Use Node.js 24
26+
uses: actions/setup-node@v6.4.0
2727
with:
28-
node-version: 16
28+
node-version: 24
2929
- name: Build with npm
3030
run: |
3131
npm ci
3232
npm run build --if-present
3333
npm test
3434
npm run coverage
3535
- name: SonarCloud
36-
uses: SonarSource/sonarqube-scan-action@v7
36+
uses: SonarSource/sonarqube-scan-action@v8.2.0
3737
env:
3838
SONAR_TOKEN: '${{ secrets.SONAR_TOKEN }}'
3939
with:

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
strategy:
1616
matrix:
1717
node-version:
18-
- 16.x
19-
- 17.x
2018
- 18.x
21-
- 19.x
19+
- 20.x
20+
- 22.x
21+
- 24.x
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v7.0.0
2424
- name: 'Use Node.js ${{ matrix.node-version }}'
25-
uses: actions/setup-node@v1
25+
uses: actions/setup-node@v6.4.0
2626
with:
2727
node-version: '${{ matrix.node-version }}'
2828
- run: npm ci

0 commit comments

Comments
 (0)