From 07ec1cde2e88e8f84d200c01cd1a6a8d678a7ce8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Aug 2025 10:00:39 +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/build.yml | 6 +++--- .github/workflows/codeql.yml | 2 +- .github/workflows/deps-review.yml | 2 +- .github/workflows/qodana.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c4ac5ea6d..faaa45ca8d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,7 +55,7 @@ jobs: psql --version Write-Host "Active .NET SDK: $(dotnet --version)" - name: Git checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Restore tools run: dotnet tool restore - name: Restore packages @@ -160,7 +160,7 @@ jobs: 8.0.* 9.0.* - name: Git checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Restore tools run: dotnet tool restore - name: InspectCode @@ -219,7 +219,7 @@ jobs: 8.0.* 9.0.* - name: Git checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 2 - name: Restore tools diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 705d75d68c..503d83358e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -29,7 +29,7 @@ jobs: 8.0.* 9.0.* - name: Git checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: diff --git a/.github/workflows/deps-review.yml b/.github/workflows/deps-review.yml index b9d6d20fff..8461b453cf 100644 --- a/.github/workflows/deps-review.yml +++ b/.github/workflows/deps-review.yml @@ -9,6 +9,6 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout Repository' - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 'Dependency Review' uses: actions/dependency-review-action@v4 diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml index 0f88a90f3f..79b98d19d8 100644 --- a/.github/workflows/qodana.yml +++ b/.github/workflows/qodana.yml @@ -28,7 +28,7 @@ jobs: 8.0.* 9.0.* - name: Git checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit fetch-depth: 0 # a full history is required for pull request analysis