From 0b8722dba354fbdae004cd3b86336fe0293e8103 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 18:49:17 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/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] --- .github/workflows/dotnet.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 81fcc8e..0016091 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -12,7 +12,7 @@ jobs: build: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup .NET Core uses: actions/setup-dotnet@v5 with: @@ -28,7 +28,7 @@ jobs: codeql: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Initialize CodeQL uses: github/codeql-action/init@v4 with: @@ -46,7 +46,7 @@ jobs: if: github.event_name == 'pull_request' needs: build steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Build Image run: docker build . -t $IMAGE_NAME build-push-docker: @@ -54,7 +54,7 @@ jobs: if: github.event_name == 'push' needs: build steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Log in to Docker Hub uses: docker/login-action@v3 with: