From f612bdf793fdf6c406713b0ed5d3fd9687d2379d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 07:21:10 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pkg-rust.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pkg-rust.yml b/.github/workflows/pkg-rust.yml index 92189d1..0b30cab 100644 --- a/.github/workflows/pkg-rust.yml +++ b/.github/workflows/pkg-rust.yml @@ -723,7 +723,7 @@ jobs: - name: Fetch cargo cross if available if: ${{ steps.skip.skip != 'true' }} id: cache-cargo-cross - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ steps.rust.outputs.bin_dir }}/cross @@ -739,7 +739,7 @@ jobs: - name: Force cache save if: ${{ steps.skip.skip != 'true' && steps.install-cargo-cross.outputs.installed == 'true' }} - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: | ${{ steps.rust.outputs.bin_dir }}/cross @@ -950,7 +950,7 @@ jobs: # Speed up Rust builds by caching unchanged built dependencies. # See: https://github.com/actions/cache/blob/master/examples.md#rust---cargo - name: Fetch .cargo from cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/registry @@ -961,21 +961,21 @@ jobs: # the tool that we are using. - name: Fetch cargo-deb from cache id: cache-cargo-deb - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.rust.outputs.bin_dir }}/cargo-deb key: ${{ matrix.image }}-cargo-deb-${{ env.CARGO_DEB_VER }}-${{ endsWith(matrix.image, 'xenial')}} - name: Fetch cargo-generate-rpm from cache id: cache-cargo-generate-rpm - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.rust.outputs.bin_dir }}/cargo-generate-rpm key: ${{ matrix.image }}-cargo-generate-rpm-${{ env.CARGO_GENERATE_RPM_VER }} - name: Fetch toml-cli from cache id: cache-toml-cli - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.rust.outputs.bin_dir }}/toml key: ${{ matrix.image }}-toml-cli-${{ env.TOML_CLI_VER }} @@ -1004,7 +1004,7 @@ jobs: - name: Force cache save if: ${{ steps.install-cargo-deb.outputs.installed == 'true' }} - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ${{ steps.rust.outputs.bin_dir }}/cargo-deb key: ${{ matrix.image }}-cargo-deb-${{ env.CARGO_DEB_VER }}-${{ endsWith(matrix.image, 'xenial')}} @@ -1022,7 +1022,7 @@ jobs: - name: Force cache save if: ${{ steps.install-cargo-generate-rpm.outputs.installed == 'true' }} - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ${{ steps.rust.outputs.bin_dir }}/cargo-generate-rpm key: ${{ matrix.image }}-cargo-generate-rpm-${{ env.CARGO_GENERATE_RPM_VER }} @@ -1036,7 +1036,7 @@ jobs: - name: Force cache save if: ${{ steps.install-toml-cli.outputs.installed == 'true' }} - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ${{ steps.rust.outputs.bin_dir }}/toml key: ${{ matrix.image }}-toml-cli-${{ env.TOML_CLI_VER }}