From 6510fc0c7469bde342569c0b0f12f93f5428882e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 02:03:45 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/CICD.yml | 18 +++++++++--------- .../workflows/require-changelog-for-PRs.yml | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index f881cada..e43c9697 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -35,7 +35,7 @@ jobs: name: Extract crate metadata runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Extract crate information id: crate_metadata run: | @@ -58,7 +58,7 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: components: rustfmt,clippy - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: cargo fmt -- --check - run: cargo clippy --locked --all-targets --all-features -- -D warnings @@ -68,7 +68,7 @@ jobs: needs: crate_metadata steps: - name: Checkout source code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install rust toolchain (v${{ needs.crate_metadata.outputs.msrv }}) uses: dtolnay/rust-toolchain@master with: @@ -80,7 +80,7 @@ jobs: name: License checks runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true # we especially want to perform license checks on submodules - run: tests/scripts/license-checks.sh @@ -90,7 +90,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Git checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: submodules: true # we need all syntax and theme submodules - name: Install Rust toolchain @@ -119,7 +119,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Git checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Prepare environment variables run: | echo "BAT_SYSTEM_CONFIG_PREFIX=$GITHUB_WORKSPACE/tests/examples/system_config" >> $GITHUB_ENV @@ -135,7 +135,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Git checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable - name: Check documentation @@ -150,7 +150,7 @@ jobs: runs-on: ubuntu-latest steps: - run: cargo install cargo-audit --locked - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: cargo audit build: @@ -178,7 +178,7 @@ jobs: BUILD_CMD: cargo steps: - name: Checkout source code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install prerequisites shell: bash diff --git a/.github/workflows/require-changelog-for-PRs.yml b/.github/workflows/require-changelog-for-PRs.yml index 3c8cca37..7196701c 100644 --- a/.github/workflows/require-changelog-for-PRs.yml +++ b/.github/workflows/require-changelog-for-PRs.yml @@ -13,7 +13,7 @@ jobs: PR_NUMBER: ${{ github.event.number }} PR_BASE: ${{ github.base_ref }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Fetch PR base run: git fetch --no-tags --prune --depth=1 origin