Skip to content

Commit

Permalink
Update actions/cache to v3 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude authored Dec 5, 2022
1 parent 823fe93 commit eb49593
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
php-version: ${{ env.PHP_VERSION }}
tools: composer:v2
- uses: actions/checkout@v3
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: vendor
key: composer-${{ runner.os }}-${{ env.PHP_VERSION }}-${{ hashFiles('composer.json') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
php-version: ${{ env.PHP_VERSION }}
tools: composer:v2
- uses: actions/checkout@v3
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: vendor
key: composer-${{ runner.os }}-${{ env.PHP_VERSION }}-${{ hashFiles('composer.json') }}
Expand All @@ -35,7 +35,7 @@ jobs:
composer install --no-interaction --no-progress --ansi --no-scripts
composer show
- name: Restore Psalm cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/.cache/psalm
key: psalm-${{ env.PSALM_VERSION }}-${{ env.PHP_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
php-version: ${{ matrix.php-version }}
tools: composer:v2
- uses: actions/checkout@v3
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: vendor
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.dependency-version }}-${{ hashFiles('composer.json') }}
Expand Down

0 comments on commit eb49593

Please sign in to comment.