diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 82b78ea..376dbee 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -43,17 +43,17 @@ jobs: with: tool: grcov - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 9c06c72..8415c97 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -48,17 +48,17 @@ jobs: with: toolchain: ${{ matrix.version }} - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fce9591..98d3e07 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -29,7 +29,7 @@ jobs: uses: actions/checkout@v7 - name: Cache vcpkg installed - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: $VCPKG_ROOT/installed key: ${{ runner.os }}-vcpkg-cache-${{ matrix.linkage }} @@ -37,7 +37,7 @@ jobs: VCPKG_ROOT: 'C:\vcpkg' - name: Cache vcpkg downloads - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: $VCPKG_ROOT/downloads key: ${{ runner.os }}-vcpkg-cache-${{ matrix.linkage }} @@ -60,17 +60,17 @@ jobs: with: toolchain: ${{ matrix.version }} - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ${{ matrix.version }}-x86_64-pc-windows-msvc-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ${{ matrix.version }}-x86_64-pc-windows-msvc-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ${{ matrix.version }}-x86_64-pc-windows-msvc-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }}