Skip to content

Commit

Permalink
github-actions(deps): bump actions/cache from 2.1.7 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v2.1.7...v3)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Mar 21, 2022
1 parent fbe67fa commit 78f55c8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.3.2"

- name: "Cache dependencies installed with composer"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3"
with:
path: "${{ env.COMPOSER_CACHE_DIR }}"
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}"
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.3.2"

- name: "Cache dependencies installed with composer"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3"
with:
path: "${{ env.COMPOSER_CACHE_DIR }}"
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}"
Expand All @@ -123,7 +123,7 @@ jobs:
run: "mkdir -p .build/php-cs-fixer"

- name: "Cache cache directory for friendsofphp/php-cs-fixer"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3"
with:
path: ".build/php-cs-fixer"
key: "php-${{ matrix.php-version }}-php-cs-fixer-${{ github.sha }}"
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.3.2"

- name: "Cache dependencies installed with composer"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3"
with:
path: "${{ env.COMPOSER_CACHE_DIR }}"
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}"
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.3.2"

- name: "Cache dependencies installed with composer"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3"
with:
path: "${{ env.COMPOSER_CACHE_DIR }}"
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}"
Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:
uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.3.2"

- name: "Cache dependencies installed with composer"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3"
with:
path: "${{ env.COMPOSER_CACHE_DIR }}"
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/renew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.3.2"

- name: "Cache dependencies installed with composer"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3"
with:
path: "${{ env.COMPOSER_CACHE_DIR }}"
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}"
Expand All @@ -58,7 +58,7 @@ jobs:
run: "mkdir -p .build/php-cs-fixer"

- name: "Cache cache directory for friendsofphp/php-cs-fixer"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3"
with:
path: ".build/php-cs-fixer"
key: "php-${{ matrix.php-version }}-php-cs-fixer-${{ github.sha }}"
Expand Down

0 comments on commit 78f55c8

Please sign in to comment.