Skip to content

Commit efac3f2

Browse files
authored
Merge pull request #13 from InteractionDesignFoundation/renovate/actions-cache-4.x
Update actions/cache action to v4
2 parents 3305c57 + 788e1a6 commit efac3f2

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@v3
33+
uses: actions/cache@v4
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@v3
44+
uses: actions/cache@v4
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
@@ -33,7 +33,7 @@ jobs:
3333
echo "composer_dir={$(composer config cache-files-dir)}" >> $GITHUB_OUTPUT
3434
3535
- name: Retrieve Composer‘s cache
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: ${{ steps.composer-cache.outputs.composer_dir }}
3939
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -46,7 +46,7 @@ jobs:
4646
# the way cache keys are set up will always cause a cache miss
4747
# but will restore the cache generated during the previous run based on partial match
4848
- name: Retrieve Psalm’s cache
49-
uses: actions/cache@v3
49+
uses: actions/cache@v4
5050
with:
5151
path: ./cache/psalm
5252
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@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ${{ steps.composer-cache.outputs.composer_dir }}
3535
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)