diff --git a/.github/workflows/release-new-version.yml b/.github/workflows/release-new-version.yml index eb3ed14..ce94c04 100644 --- a/.github/workflows/release-new-version.yml +++ b/.github/workflows/release-new-version.yml @@ -24,7 +24,7 @@ jobs: uses: actions/checkout@v4 - name: Cache Cargo registry - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.cargo/registry @@ -34,7 +34,7 @@ jobs: ${{ runner.os }}-cargo-registry- - name: Cache Cargo build - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: target key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }} @@ -62,7 +62,7 @@ jobs: uses: actions/checkout@v4 - name: Cache Cargo registry - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.cargo/registry @@ -72,7 +72,7 @@ jobs: ${{ runner.os }}-cargo-registry- - name: Cache Cargo build - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: target key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}