diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index a1e93ef64..d92f1ba89 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@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 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@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 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@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 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@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 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@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 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@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 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@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3" with: