Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
# Lookup cache based on the default branch and a timestamp. Allows
# to use cache from the very first build on the day (sanitized database dump, for example).
- name: Restore DB cache
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5
with:
path: .data
key: v26.1.0-db11-${{ hashFiles('db_cache_branch') }}-${{ hashFiles('db_cache_fallback') }}-${{ hashFiles('db_cache_timestamp') }}
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
# Note that the cache fallback flag is enabled for this case in order
# to save cache even if the fallback is not used when restoring it.
- name: Save DB cache
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5
uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5
if: env.db_hash != hashFiles('.data')
with:
path: .data
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
# Lookup cache based on the default branch and a timestamp. Allows
# to use cache from the very first build on the day (sanitized database dump, for example).
- name: Restore DB cache
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5
with:
path: .data
fail-on-cache-miss: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vortex-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
persist-credentials: false

- name: Cache Composer dependencies
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
Expand Down