From bb2f3dc8dd93997c4437b1f971a616bedf0ba923 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Sep 2026 21:10:50 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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/ci.yml | 10 +++++----- .github/workflows/mirror-repo.yml | 2 +- .github/workflows/rescue-demos.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77c0087..2ebcf53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: fmt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: dtolnay/rust-toolchain@stable with: components: rustfmt @@ -33,7 +33,7 @@ jobs: clippy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: dtolnay/rust-toolchain@stable with: components: clippy @@ -43,7 +43,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: dtolnay/rust-toolchain@stable - uses: Swatinem/rust-cache@v2 - run: cargo test --workspace @@ -59,7 +59,7 @@ jobs: fixture-tamper-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: dtolnay/rust-toolchain@stable - uses: Swatinem/rust-cache@v2 - name: Regenerate fixtures and verify round-trip @@ -90,7 +90,7 @@ jobs: contract-wasm: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # No toolchain action: rust-toolchain.toml pins the channel and the # wasm32 target, and `rustup toolchain install` with no argument installs # exactly that. Naming a version here too would let the two drift, and diff --git a/.github/workflows/mirror-repo.yml b/.github/workflows/mirror-repo.yml index 380cc7b..acd09b1 100644 --- a/.github/workflows/mirror-repo.yml +++ b/.github/workflows/mirror-repo.yml @@ -164,7 +164,7 @@ jobs: test -s ~/.config/freenet/git-identity.bundle - name: Check out source repo - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 ref: ${{ inputs.branch }} diff --git a/.github/workflows/rescue-demos.yml b/.github/workflows/rescue-demos.yml index 7b34b40..02596ce 100644 --- a/.github/workflows/rescue-demos.yml +++ b/.github/workflows/rescue-demos.yml @@ -105,7 +105,7 @@ jobs: # repos in the future this should be revisited. - name: Clone upstream for --from if: matrix.github_repo != '' - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: ${{ matrix.github_repo }} path: upstream