From e9124c46130d0a4ac7851bd9d41b923df7f0fdaa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 06:03:33 +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/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 add257c57..a8212cb3c 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@v5 + - uses: actions/checkout@v6 - name: Setup .NET Core uses: actions/setup-dotnet@v5 @@ -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@v5 + - uses: actions/checkout@v6 - name: "Download artifact" uses: actions/download-artifact@v6 diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index 546bae55c..3cffc4b86 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@v5 + uses: actions/checkout@v6 # 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 273d27fcd..994247fa0 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@v5 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/receive-pr.yml b/.github/workflows/receive-pr.yml index 5d1b3248a..f83c49339 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@v5 + - uses: actions/checkout@v6 - name: Setup .NET Core uses: actions/setup-dotnet@v5