Skip to content

Commit e4e3e4e

Browse files
authored
Merge pull request #28 from InteractionDesignFoundation/renovate/actions-cache-5.x
Update actions/cache action to v5
2 parents 2a62f45 + d8c0c3f commit e4e3e4e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/format_php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
echo "composer_dir={$(composer config cache-files-dir)}" >> $GITHUB_OUTPUT
3131
3232
- name: Retrieve Composer‘s cache
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: ${{ steps.composer-cache.outputs.composer_dir }}
3636
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -41,7 +41,7 @@ jobs:
4141
run: "composer install --no-interaction --no-progress --no-scripts"
4242

4343
- name: Retrieve PHPCS‘s cache
44-
uses: actions/cache@v4
44+
uses: actions/cache@v5
4545
with:
4646
path: .cache/phpcs
4747
key: ${{ runner.os }}-phpcs-${{ hashFiles('phpcs.xml') }}

.github/workflows/psalm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
echo "composer_dir={$(composer config cache-files-dir)}" >> $GITHUB_OUTPUT
3737
3838
- name: Retrieve Composer‘s cache
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: ${{ steps.composer-cache.outputs.composer_dir }}
4242
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -49,7 +49,7 @@ jobs:
4949
# the way cache keys are set up will always cause a cache miss
5050
# but will restore the cache generated during the previous run based on partial match
5151
- name: Retrieve Psalm’s cache
52-
uses: actions/cache@v4
52+
uses: actions/cache@v5
5353
with:
5454
path: ./cache/psalm
5555
key: ${{ runner.os }}-psalm-cache-${{ hashFiles('psalm.xml', 'psalm-baseline.xml') }}

.github/workflows/validator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "composer_dir={$(composer config cache-files-dir)}" >> $GITHUB_OUTPUT
3030
3131
- name: Retrieve Composer‘s cache
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: ${{ steps.composer-cache.outputs.composer_dir }}
3535
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)