Skip to content

Commit

Permalink
bump actions/cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored and jrmajor committed Feb 3, 2024
1 parent e6e5364 commit 8316f55
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sca.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
run: echo "::set-output name=path::$(composer config cache-files-dir)"

- name: Cache Composer dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache-dir.outputs.path }}
key: composer-${{ hashFiles('composer.lock') }}
restore-keys: composer-

- name: Psalm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .cache/psalm
key: psalm-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
run: echo "::set-output name=path::$(composer config cache-files-dir)"

- name: Cache Composer dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache-dir.outputs.path }}
key: composer-${{ hashFiles('composer.lock') }}
restore-keys: composer-

- name: PHP-CS-Fixer cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .cache/.php-cs-fixer.cache
key: php-cs-fixer-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:
run: echo "::set-output name=path::$(composer config cache-files-dir)"

- name: Cache Composer dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache-dir.outputs.path }}
key: composer-${{ hashFiles('composer.lock') }}
restore-keys: composer-

- name: Node assertions cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .cache/node-assertions
key: node-assertions-${{ github.sha }}
Expand Down

0 comments on commit 8316f55

Please sign in to comment.