From 21c121f9b3b131f1b67dcf4f32a4b99f9d2f4167 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jul 2024 17:06:44 +0200 Subject: [PATCH] Bump GitHub Actions `actions/cache` and `actions/configure-pages` (#3836) --- .github/workflows/ci.yml | 6 +++--- .github/workflows/docs.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e9eb323b..77fae18d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,7 +106,7 @@ jobs: # the cache has been downloaded. # # This could be avoided if we added Cargo.lock to the repository. - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: # https://doc.rust-lang.org/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci path: | @@ -127,7 +127,7 @@ jobs: - name: Cache cargo-apk if: contains(matrix.platform.target, 'android') id: cargo-apk-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cargo/bin/cargo-apk # Change this key if we update the required cargo-apk version @@ -210,7 +210,7 @@ jobs: # See restore step above - name: Save cache of cargo folder - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: | ~/.cargo/registry/index/ diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 15bd65a40..67e73607e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -32,7 +32,7 @@ jobs: cargo doc --no-deps -Z rustdoc-map -Z rustdoc-scrape-examples --features=rwh_04,rwh_05,rwh_06,serde,mint,android-native-activity - name: Setup Pages - uses: actions/configure-pages@v4 + uses: actions/configure-pages@v5 - name: Fix permissions run: |