diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml index 0cc3eb5..9ebf21a 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -41,17 +41,17 @@ jobs: cargo install toml-cli - name: Cache cargo registry - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}