Skip to content

Commit 0b8722d

Browse files
Bump actions/checkout from 5 to 6
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]>
1 parent 9e3d10d commit 0b8722d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
runs-on: ubuntu-24.04
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Setup .NET Core
1717
uses: actions/setup-dotnet@v5
1818
with:
@@ -28,7 +28,7 @@ jobs:
2828
codeql:
2929
runs-on: ubuntu-24.04
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- name: Initialize CodeQL
3333
uses: github/codeql-action/init@v4
3434
with:
@@ -46,15 +46,15 @@ jobs:
4646
if: github.event_name == 'pull_request'
4747
needs: build
4848
steps:
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050
- name: Build Image
5151
run: docker build . -t $IMAGE_NAME
5252
build-push-docker:
5353
runs-on: ubuntu-24.04
5454
if: github.event_name == 'push'
5555
needs: build
5656
steps:
57-
- uses: actions/checkout@v5
57+
- uses: actions/checkout@v6
5858
- name: Log in to Docker Hub
5959
uses: docker/login-action@v3
6060
with:

0 commit comments

Comments
 (0)