Skip to content

Commit 51fa6a7

Browse files
Bump actions/checkout from 5 to 6 (#171)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ea9a8c6 commit 51fa6a7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
8.0.x
2626
9.0.x
2727
10.0.x
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
- name: Restore
3030
run: dotnet restore --nologo
3131
working-directory: src
@@ -49,7 +49,7 @@ jobs:
4949
env:
5050
DOTNET_CLI_TELEMETRY_OPTOUT: 'true'
5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353
- name: Setup .Net 10.0.x
5454
uses: actions/setup-dotnet@v5
5555
with:

.github/workflows/nightly-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
8.0.x
1919
9.0.x
2020
10.0.x
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- name: Fetch all history for all tags and branches
2323
run: git fetch --prune --unshallow
2424
- name: Install GitVersion

.github/workflows/pr-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
8.0.x
2929
9.0.x
3030
10.0.x
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- name: Restore
3333
run: dotnet restore --nologo src
3434
- name: Build
@@ -39,7 +39,7 @@ jobs:
3939
env:
4040
DOTNET_CLI_TELEMETRY_OPTOUT: 'true'
4141
steps:
42-
- uses: actions/checkout@v5
42+
- uses: actions/checkout@v6
4343
- name: Setup .Net 10.0.x
4444
uses: actions/setup-dotnet@v5
4545
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
8.0.x
1818
9.0.x
1919
10.0.x
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Fetch all history for all tags and branches
2222
run: git fetch --prune --unshallow
2323
- name: Install GitVersion

0 commit comments

Comments
 (0)