diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index a5c584c99..733c9540b 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -28,7 +28,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install toolchain run: | rustup toolchain install stable --no-self-update --profile minimal --component llvm-tools-preview diff --git a/.github/workflows/features.yml b/.github/workflows/features.yml index 8b29066f9..29eaeef93 100644 --- a/.github/workflows/features.yml +++ b/.github/workflows/features.yml @@ -31,7 +31,7 @@ jobs: - name: Install toolchain run: | rustup toolchain install stable --no-self-update --profile minimal - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: taiki-e/install-action@cargo-hack - name: Create Cargo.lock for caching diff --git a/.github/workflows/minimal.yml b/.github/workflows/minimal.yml index 7b66cd116..78a7f7797 100644 --- a/.github/workflows/minimal.yml +++ b/.github/workflows/minimal.yml @@ -32,7 +32,7 @@ jobs: run: | rustup toolchain install stable --no-self-update --profile minimal rustup toolchain install nightly --no-self-update --profile minimal - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: cargo update -Zminimal-versions run: cargo +nightly -Zminimal-versions update diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml index 04cecbb0f..c7231f9bf 100644 --- a/.github/workflows/msrv.yml +++ b/.github/workflows/msrv.yml @@ -30,7 +30,7 @@ jobs: rustup toolchain install nightly --no-self-update --profile minimal rustup override set 1.63 rustup default 1.63 - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: cargo update -Zminimal-versions run: cargo +nightly -Zminimal-versions update diff --git a/.github/workflows/os-check.yml b/.github/workflows/os-check.yml index 638c19f35..5f9d0169b 100644 --- a/.github/workflows/os-check.yml +++ b/.github/workflows/os-check.yml @@ -32,7 +32,7 @@ jobs: - name: Install toolchain run: | rustup toolchain install stable --no-self-update --profile minimal - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Create Cargo.lock for caching run: cargo update diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index 89ac1aa1b..60f3bc042 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Install Rust toolchain diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index b84f34d2f..c8e4d1e09 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -7,6 +7,6 @@ jobs: shellcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: shellcheck run: shellcheck *.sh diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 2d5ca1a6c..2eebaca73 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -34,7 +34,7 @@ jobs: rustup toolchain install ${{ matrix.toolchain }} --no-self-update --profile minimal --component rustfmt,clippy rustup override set ${{ matrix.toolchain }} rustup default ${{ matrix.toolchain }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Create Cargo.lock for caching run: cargo update @@ -56,7 +56,7 @@ jobs: rustup toolchain install nightly --no-self-update --profile minimal rustup override set nightly rustup default nightly - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Create Cargo.lock for caching run: cargo update diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8adbd3ca4..997b97987 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ jobs: rustup toolchain install ${{ matrix.toolchain }} --no-self-update --profile minimal rustup override set ${{ matrix.toolchain }} rustup default ${{ matrix.toolchain }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Create Cargo.lock for caching run: cargo update