From aa2f71c5c4570cf5e22d28d699fefda06fb6961b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 11:28:23 +0000 Subject: [PATCH] chore(deps): 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/docker-ci.yml | 2 +- .github/workflows/maven.yml | 2 +- .github/workflows/rust-inner.yml | 2 +- .github/workflows/rust.yml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml index 8c824d5..de98960 100644 --- a/.github/workflows/docker-ci.yml +++ b/.github/workflows/docker-ci.yml @@ -169,7 +169,7 @@ jobs: fi - name: Checkout Source Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Download specific Build Artifact to artifacts/ if: ${{ inputs.artifact-name != '' && inputs.artifact-name != '*' }} diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 5af590f..8331e3b 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -51,7 +51,7 @@ jobs: steps: - name: Checkout Source Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Java for Building the Package uses: actions/setup-java@v5 diff --git a/.github/workflows/rust-inner.yml b/.github/workflows/rust-inner.yml index 99585c8..a8d0042 100644 --- a/.github/workflows/rust-inner.yml +++ b/.github/workflows/rust-inner.yml @@ -26,7 +26,7 @@ jobs: name: "Build ${{ inputs.architecture }}${{ inputs.features && format(' ({0})', inputs.features) || '' }}" runs-on: ${{ inputs.architecture == 'arm64' && 'ubuntu-22.04-arm' || 'ubuntu-22.04' }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set profile ${{ inputs.profile }} env: PROFILE: ${{ inputs.profile }} diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fd5ff1c..59195cc 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -63,7 +63,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Write deny.toml run: | if [[ -f "deny.toml" ]]; then @@ -117,7 +117,7 @@ jobs: features: ${{ fromJSON(inputs.features) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Download bins uses: actions/download-artifact@v5 with: @@ -145,7 +145,7 @@ jobs: if: ${{ inputs.cargo-fmt-check }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: dtolnay/rust-toolchain@stable with: components: rustfmt