From bdb3c99843b44d601703639fa7d8438f371ff6b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 08:22:48 +0000 Subject: [PATCH] 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/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d5e029..e85b107 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Pull repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Check if: ${{ success() }} run: cargo check --all-targets --all-features @@ -23,7 +23,7 @@ jobs: if: github.ref == 'refs/heads/master' steps: - name: Pull repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Compile data if: ${{ success() }} run: cargo run --bin=data_compiler data @@ -68,7 +68,7 @@ jobs: EXTENSION: .exe steps: - name: Pull repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install rustup run: | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable --profile default --target ${{ matrix.TARGET }} -y