From 20fe20b4cea348ceba450609d98648fc059c04be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Sep 2025 04:29:52 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/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] --- .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 c34f7bd..1117bfd 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@v4 + - uses: actions/checkout@v5 - name: Setup .NET Core uses: actions/setup-dotnet@v4 with: @@ -28,7 +28,7 @@ jobs: codeql: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: @@ -46,7 +46,7 @@ jobs: if: github.event_name == 'pull_request' needs: build steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - 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@v4 + - uses: actions/checkout@v5 - name: Log in to Docker Hub uses: docker/login-action@v3 with: