From 08fb075a4a01d138ad4c544d69938fe127a9251f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 14 Jan 2024 12:43:01 +0100 Subject: [PATCH] Bump actions/cache from 3.3.2 to 3.3.3 in /.github/actions/setup (#1350) Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 3.3.3. - [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/704facf57e6136b1bc63b828d79edcd491f0ee84...e12d46a63a90f2fae62d114769bbf2a179198b5c) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/actions/setup/action.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 32184505..2bf599ec 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -34,7 +34,7 @@ runs: echo "GRADLE_BUILD_CACHE_DAYS=7" >> ~/.gradle/gradle.properties - name: Gradle Binary Cache Restore id: gradle-binary-cache-restore - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 + uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3" with: @@ -44,7 +44,7 @@ runs: key: ${{ runner.os }}-gradle-binary-${{ hashFiles(format('{0}{1}', github.workspace, '/gradle/wrapper/gradle-wrapper.properties')) }} - name: Gradle Dependency Cache Restore id: gradle-dependency-cache-restore - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 + uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3" with: @@ -55,7 +55,7 @@ runs: ${{ runner.os }}-gradle-deps- - name: Gradle Build Cache Restore id: gradle-build-cache-restore - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 + uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3" with: @@ -68,7 +68,7 @@ runs: ${{ runner.os }}-gradle-build- - name: Rust Cache Restore id: rust-cache-restore - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 + uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3" with: @@ -98,7 +98,7 @@ runs: - name: Gradle Binary Cache Save id: gradle-binary-cache-save if: github.event.pull_request.head.sha == '' && steps.gradle-binary-cache-restore.outputs.cache-hit != 'true' - uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 + uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3" with: @@ -109,14 +109,14 @@ runs: - name: Gradle Dependency Cache Save id: gradle-dependency-cache-save if: github.event.pull_request.head.sha == '' && steps.gradle-dependency-cache-restore.outputs.cache-hit != 'true' - uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 + uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c with: path: | ~/.gradle/caches/modules-2 key: ${{ steps.gradle-dependency-cache-restore.key }} - name: Rust Cache Save id: rust-cache-save - uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 + uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3" with: