Skip to content

Commit d499abb

Browse files
chore: Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a470ed7 commit d499abb

13 files changed

+24
-24
lines changed

.github/workflows/benchmark-parser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
node-version: [20, 22]
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
persist-credentials: false
2525
ref: ${{github.event.pull_request.head.sha}}
@@ -44,7 +44,7 @@ jobs:
4444
echo 'EOF' >> $GITHUB_OUTPUT
4545
4646
# main benchmark
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
with:
4949
persist-credentials: false
5050
ref: 'main'

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
node-version: [20, 22]
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
persist-credentials: false
2525
ref: ${{github.event.pull_request.head.sha}}
@@ -44,7 +44,7 @@ jobs:
4444
echo 'EOF' >> $GITHUB_OUTPUT
4545
4646
# main benchmark
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
with:
4949
persist-credentials: false
5050
ref: 'main'

.github/workflows/ci-alternative-runtime.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
node-version: 20
3434
nsolid-version: 5
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737
with:
3838
persist-credentials: false
3939

@@ -57,7 +57,7 @@ jobs:
5757
contents: read
5858

5959
steps:
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v5
6161
with:
6262
persist-credentials: false
6363

@@ -84,7 +84,7 @@ jobs:
8484
permissions:
8585
contents: read
8686
steps:
87-
- uses: actions/checkout@v4
87+
- uses: actions/checkout@v5
8888
with:
8989
persist-credentials: false
9090
- uses: nodesource/setup-nsolid@v1

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
contents: read
2929
steps:
3030
- name: Check out repo
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
persist-credentials: false
3434

@@ -41,7 +41,7 @@ jobs:
4141
permissions:
4242
contents: read
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
with:
4646
persist-credentials: false
4747

@@ -67,7 +67,7 @@ jobs:
6767
permissions:
6868
contents: read
6969
steps:
70-
- uses: actions/checkout@v4
70+
- uses: actions/checkout@v5
7171
with:
7272
persist-credentials: false
7373

@@ -116,7 +116,7 @@ jobs:
116116
os: [macos-latest, ubuntu-latest, windows-latest]
117117

118118
steps:
119-
- uses: actions/checkout@v4
119+
- uses: actions/checkout@v5
120120
with:
121121
persist-credentials: false
122122

@@ -146,7 +146,7 @@ jobs:
146146
contents: read
147147

148148
steps:
149-
- uses: actions/checkout@v4
149+
- uses: actions/checkout@v5
150150
with:
151151
persist-credentials: false
152152

@@ -175,7 +175,7 @@ jobs:
175175
permissions:
176176
contents: read
177177
steps:
178-
- uses: actions/checkout@v4
178+
- uses: actions/checkout@v5
179179
with:
180180
persist-credentials: false
181181
- name: Use Node.js

.github/workflows/citgm-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
contents: read
4646
steps:
4747
- name: Check out Fastify
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949
with:
5050
persist-credentials: false
5151

@@ -75,7 +75,7 @@ jobs:
7575
const result = repositoryUrl.match( /.*\/([a-zA-Z0-9-_]+\/[a-zA-Z0-9-_]+)\.git/)[1]
7676
return result
7777
- name: Check out ${{inputs.package}}
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v5
7979
with:
8080
repository: ${{ steps.repository-url.outputs.result }}
8181
path: package

.github/workflows/coverage-nix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
permissions:
1010
contents: read
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
persist-credentials: false
1515

.github/workflows/coverage-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
permissions:
1010
contents: read
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
persist-credentials: false
1515

.github/workflows/integration-alternative-runtimes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
node-version: 20
3232
runtime: nsolid
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
persist-credentials: false
3737

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
pnpm-version: [8]
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
persist-credentials: false
3333

.github/workflows/links-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check out repo
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
with:
1616
persist-credentials: false
1717

0 commit comments

Comments
 (0)