diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d99dc1b..3d562fe8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -120,7 +120,7 @@ jobs: uses: actions/setup-python@v5 - name: Restore Privacy Plugin Cache - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4 id: privacy_cache_restore if: inputs.cache with: @@ -133,7 +133,7 @@ jobs: privacy-cache- - name: Restore Social Plugin Cache - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4 id: social_cache_restore if: inputs.cache with: @@ -146,7 +146,7 @@ jobs: social-cache-privacyguides/privacyguides.org-${{ inputs.lang }}- - name: Restore Optimize Plugin Cache - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4 id: optimize_cache_restore if: inputs.cache with: @@ -199,7 +199,7 @@ jobs: tar -czf site-${{ inputs.config }}-${{ inputs.lang }}.tar.gz site - name: Find Privacy Plugin Cache - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4 if: steps.privacy_cache_restore.outputs.cache-hit != 'true' && inputs.cache id: privacy_cache_test with: @@ -209,7 +209,7 @@ jobs: .cache/plugin/privacy - name: Find Social Plugin Cache - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4 if: steps.social_cache_restore.outputs.cache-hit != 'true' && inputs.cache id: social_cache_test with: @@ -220,7 +220,7 @@ jobs: .cache/plugin/social/assets - name: Find Optimize Plugin Cache - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4 if: steps.optimize_cache_restore.outputs.cache-hit != 'true' && inputs.cache id: optimize_cache_test with: @@ -230,14 +230,14 @@ jobs: .cache/plugin/optimize - name: Save Privacy Plugin Cache - uses: actions/cache/save@v4.0.2 + uses: actions/cache/save@v4 if: steps.privacy_cache_test.outputs.cache-hit != 'true' && inputs.cache with: key: privacy-cache-${{ inputs.repo }}-${{ hashfiles('.cache/plugin/privacy/**') }} path: .cache/plugin/privacy - name: Save Social Plugin Cache - uses: actions/cache/save@v4.0.2 + uses: actions/cache/save@v4 if: steps.social_cache_test.outputs.cache-hit != 'true' && inputs.cache with: key: social-cache-${{ inputs.repo }}-${{ inputs.lang }}-${{ hashfiles('.cache/plugin/social/manifest.json') }} @@ -246,7 +246,7 @@ jobs: .cache/plugin/social/assets - name: Save Optimize Plugin Cache - uses: actions/cache/save@v4.0.2 + uses: actions/cache/save@v4 if: steps.optimize_cache_test.outputs.cache-hit != 'true' && inputs.cache with: key: optimize-cache-${{ inputs.repo }}-${{ hashfiles('.cache/plugin/optimize/manifest.json') }}