From 49f0f4d877b670056313de4045d8ccec60280a9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 19:01:06 +0000 Subject: chore(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cargo-vet.yml | 2 +- .github/workflows/check.yml | 14 +++++++------- .github/workflows/nostd.yml | 2 +- .github/workflows/rolling.yml | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/cargo-vet.yml b/.github/workflows/cargo-vet.yml index 864c138e9..c25ae3671 100644 --- a/.github/workflows/cargo-vet.yml +++ b/.github/workflows/cargo-vet.yml @@ -19,7 +19,7 @@ jobs: CARGO_VET_VERSION: 0.10.1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 1a09a1492..5d4271145 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -37,7 +37,7 @@ jobs: workdir: [ ".", "examples/rt633", "examples/rt685s-evk",] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true @@ -66,7 +66,7 @@ jobs: workdir: ["examples"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true @@ -86,7 +86,7 @@ jobs: # runs-on: ubuntu-latest # name: semver # steps: - # - uses: actions/checkout@v4 + # - uses: actions/checkout@v5 # with: # submodules: true # - name: Install stable @@ -104,7 +104,7 @@ jobs: name: nightly / doc steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true @@ -127,7 +127,7 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true @@ -150,7 +150,7 @@ jobs: name: ubuntu / stable / deny steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true @@ -191,7 +191,7 @@ jobs: name: ubuntu / ${{ matrix.msrv }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true diff --git a/.github/workflows/nostd.yml b/.github/workflows/nostd.yml index 92460bd0f..fbada0516 100644 --- a/.github/workflows/nostd.yml +++ b/.github/workflows/nostd.yml @@ -25,7 +25,7 @@ jobs: target: [thumbv8m.main-none-eabihf] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true diff --git a/.github/workflows/rolling.yml b/.github/workflows/rolling.yml index f572954f9..4c9e9718a 100644 --- a/.github/workflows/rolling.yml +++ b/.github/workflows/rolling.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true - name: Install stable @@ -55,7 +55,7 @@ jobs: # requires 1.85 name: ubuntu / ${{ matrix.msrv }} (${{ matrix.commit }}) steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true - name: Install ${{ matrix.msrv }} -- cgit