diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9afab1a66..3abb0c25a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ubuntu-cargo-registry-${{ hashFiles('**/Cargo.lock') }} @@ -30,7 +30,7 @@ jobs: ubuntu-cargo-registry- - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ubuntu-cargo-git-${{ hashFiles('**/Cargo.lock') }} @@ -38,7 +38,7 @@ jobs: ubuntu-cargo-git- - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ubuntu-cargo-debug-${{ hashFiles('**/Cargo.lock') }} @@ -64,7 +64,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ubuntu-cargo-registry-${{ hashFiles('**/Cargo.lock') }} @@ -72,7 +72,7 @@ jobs: ubuntu-cargo-registry- - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ubuntu-cargo-git-${{ hashFiles('**/Cargo.lock') }} @@ -80,7 +80,7 @@ jobs: ubuntu-cargo-git- - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ubuntu-cargo-release-${{ hashFiles('**/Cargo.lock') }} @@ -113,7 +113,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo-audit - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/bin/cargo-audit key: cargo-audit-${{ runner.os }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41eaa23b4..3b48429d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,19 +34,19 @@ jobs: hg --version - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index a5bb0ce55..d5b2b75f7 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -19,19 +19,19 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ${{ runner.os }}-cargo-docs-target-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index e035b51db..79dea9acc 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -23,7 +23,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ubuntu-cargo-registry-${{ hashFiles('**/Cargo.lock') }} @@ -31,7 +31,7 @@ jobs: ubuntu-cargo-registry- - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ubuntu-cargo-git-${{ hashFiles('**/Cargo.lock') }} @@ -39,7 +39,7 @@ jobs: ubuntu-cargo-git- - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ubuntu-cargo-build-${{ hashFiles('**/Cargo.lock') }} @@ -68,7 +68,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ubuntu-cargo-registry-${{ hashFiles('**/Cargo.lock') }} @@ -76,7 +76,7 @@ jobs: ubuntu-cargo-registry- - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ubuntu-cargo-git-${{ hashFiles('**/Cargo.lock') }} @@ -84,7 +84,7 @@ jobs: ubuntu-cargo-git- - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ubuntu-cargo-build-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/release-new.yml b/.github/workflows/release-new.yml index b7d8edda4..7fc1e6ac7 100644 --- a/.github/workflows/release-new.yml +++ b/.github/workflows/release-new.yml @@ -136,7 +136,7 @@ jobs: sudo apt-get install -y musl-tools - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} @@ -144,7 +144,7 @@ jobs: ${{ runner.os }}-cargo-registry- - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index fd9752637..ffea84b66 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -29,7 +29,7 @@ jobs: hg --version - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ubuntu-cargo-registry-${{ hashFiles('**/Cargo.lock') }} @@ -37,7 +37,7 @@ jobs: ubuntu-cargo-registry- - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ubuntu-cargo-git-${{ hashFiles('**/Cargo.lock') }} @@ -45,7 +45,7 @@ jobs: ubuntu-cargo-git- - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ubuntu-cargo-build-${{ hashFiles('**/Cargo.lock') }} @@ -84,7 +84,7 @@ jobs: components: rustfmt, clippy - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ubuntu-cargo-registry-${{ hashFiles('**/Cargo.lock') }} @@ -92,7 +92,7 @@ jobs: ubuntu-cargo-registry- - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ubuntu-cargo-git-${{ hashFiles('**/Cargo.lock') }}