diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c0783a4..144fd9fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,7 +57,7 @@ jobs: - name: Validate Gradle Wrapper uses: gradle/actions/wrapper-validation@3f131e8634966bd73d06cc69884922b02e6faf92 # v6.2.0 - name: Restore Cache - uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: | ~/.gradle/caches @@ -102,7 +102,7 @@ jobs: if: ${{ matrix.variant == 'release' }} run: ./gradlew :app:assembleRelease $CI_GRADLE_ARG_PROPERTIES - name: Save Cache - uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 if: github.event_name != 'pull_request' with: path: | diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index 1a89c207..03f9be7b 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -52,7 +52,7 @@ jobs: - name: Validate Gradle Wrapper uses: gradle/actions/wrapper-validation@3f131e8634966bd73d06cc69884922b02e6faf92 # v6.2.0 - name: Restore Cache - uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: | ~/.gradle/caches @@ -69,7 +69,7 @@ jobs: path: | **/build/reports/**/*.* - name: Save Cache - uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 if: github.event_name != 'pull_request' with: path: | @@ -111,7 +111,7 @@ jobs: - name: Validate Gradle Wrapper uses: gradle/actions/wrapper-validation@3f131e8634966bd73d06cc69884922b02e6faf92 # v6.2.0 - name: Restore Cache - uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: | ~/.gradle/caches @@ -128,7 +128,7 @@ jobs: path: | **/build/reports/**/*.* - name: Save Cache - uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 if: github.event_name != 'pull_request' with: path: | diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 68da0f1a..cd920f83 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -50,7 +50,7 @@ jobs: distribution: 'temurin' java-version: '21' - name: Restore Cache - uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: | ~/.gradle/caches @@ -62,7 +62,7 @@ jobs: # -Pandroid.enableBuildConfigAsBytecode=false due to https://issuetracker.google.com/issues/363031540 run: ./gradlew allTests -Pandroid.enableBuildConfigAsBytecode=false $CI_GRADLE_ARG_PROPERTIES - name: Save Cache - uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 if: github.event_name != 'pull_request' with: path: |