Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
coverage: none

- name: Cache Composer downloads
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.cache/composer
key: composer-${{ runner.os }}-${{ hashFiles('**/composer.lock', '**/composer.json') }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
# requested line. Without it every package would have to be listed by hand, and the
# monorepo root no longer requires any of them directly.
- name: Cache Composer downloads
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.cache/composer
key: composer-${{ runner.os }}-${{ hashFiles('**/composer.lock', '**/composer.json') }}
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
# The repository's packages come in through `path` repositories: the shop reads
# `../src`, so it tests the code of this commit and not a published version.
- name: Cache Composer downloads
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.cache/composer
key: composer-${{ runner.os }}-${{ hashFiles('**/composer.lock', '**/composer.json') }}
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:

# Without this cache, every execution re-downloads the distribution.
- name: Cache Composer
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.composer/cache
key: magento-boot-${{ hashFiles('magento/composer.lock') }}
Expand Down Expand Up @@ -503,7 +503,7 @@ jobs:
coverage: none

- name: Cache Composer downloads
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.cache/composer
key: composer-${{ runner.os }}-${{ hashFiles('**/composer.lock', '**/composer.json') }}
Expand Down Expand Up @@ -580,7 +580,7 @@ jobs:
coverage: none

- name: Cache Composer downloads
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.cache/composer
key: composer-${{ runner.os }}-${{ hashFiles('**/composer.lock', '**/composer.json') }}
Expand Down Expand Up @@ -614,7 +614,7 @@ jobs:
ini-values: pcov.directory=.

- name: Cache Composer downloads
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.cache/composer
key: composer-${{ runner.os }}-${{ hashFiles('**/composer.lock', '**/composer.json') }}
Expand All @@ -641,7 +641,7 @@ jobs:
coverage: none

- name: Cache Composer downloads
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.cache/composer
key: composer-${{ runner.os }}-${{ hashFiles('**/composer.lock', '**/composer.json') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/splitsh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Restore cache (splitsh-lite + libgit2 1.5)
id: cache-toolchain
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
with:
path: |
~/.local/bin/splitsh-lite
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:

- name: Save cache (splitsh-lite + libgit2)
if: success() && steps.cache-toolchain.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v6
with:
path: |
~/.local/bin/splitsh-lite
Expand Down
Loading