From 2e4ffa96ba67a350edac80c0713134b7e4168fc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 10:41:44 +0100 Subject: [PATCH] build(deps): bump actions/checkout from 5 to 6 (#1218) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/docker.yml | 2 +- .github/workflows/rust.yml | 10 +++++----- .github/workflows/typos.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 9dfb779e5..39837a7ad 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -34,7 +34,7 @@ jobs: - name: Checkout if: steps.repo_check.outputs.should_deploy == 'true' - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Login to GitHub CR if: steps.repo_check.outputs.should_deploy == 'true' diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2a4aaaf8e..4cf87bb21 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,7 +18,7 @@ jobs: toolchain: - stable steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: rustup component add rustfmt --toolchain ${{ matrix.toolchain }} - uses: Swatinem/rust-cache@v2 @@ -31,7 +31,7 @@ jobs: toolchain: - stable steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: rustup component add clippy rustfmt --toolchain ${{ matrix.toolchain }} - uses: Swatinem/rust-cache@v2 @@ -45,7 +45,7 @@ jobs: toolchain: - stable steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: rustup component add rustfmt --toolchain ${{ matrix.toolchain }} - uses: Swatinem/rust-cache@v2 @@ -59,7 +59,7 @@ jobs: toolchain: - stable steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: rustup component add rustfmt --toolchain ${{ matrix.toolchain }} @@ -79,7 +79,7 @@ jobs: toolchain: - stable steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: rustup component add clippy rustfmt --toolchain ${{ matrix.toolchain }} - uses: Swatinem/rust-cache@v2 diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index ea8f08bbe..1d55b3dd9 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -17,6 +17,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Actions Repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Spell Check Repo uses: crate-ci/typos@v1.39.2