From 3b14d5ec15026c83d6971d47fa9765793d8f3546 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 09:14:21 +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-status.yml | 4 ++-- .github/workflows/codacy.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/receive-pr.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-status.yml b/.github/workflows/build-status.yml index 1bac9b962..9c68bfa6c 100644 --- a/.github/workflows/build-status.yml +++ b/.github/workflows/build-status.yml @@ -12,7 +12,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup .NET Core uses: actions/setup-dotnet@v4 @@ -75,7 +75,7 @@ jobs: # the build-and-test job might be skipped, we don't need to run this job then if: always() steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: "Download artifact" uses: actions/download-artifact@v5 diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index 5f11fa2a7..3cb2f92ef 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -35,7 +35,7 @@ jobs: steps: # Checkout the repository to the GitHub Actions runner - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis - name: Run Codacy Analysis CLI diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 939719eea..f00e7434c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -45,7 +45,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/receive-pr.yml b/.github/workflows/receive-pr.yml index 03dc5969d..177ee3e4e 100644 --- a/.github/workflows/receive-pr.yml +++ b/.github/workflows/receive-pr.yml @@ -10,7 +10,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup .NET Core uses: actions/setup-dotnet@v4