Skip to content

Commit e57bdc8

Browse files
Bump actions/cache from v1 to v2.1.4
Bumps [actions/cache](https://github.com/actions/cache) from v1 to v2.1.4. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v1...26968a0) Signed-off-by: dependabot[bot] <support@github.com>
1 parent fb2b019 commit e57bdc8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3434

3535
- name: Cache composer dependencies
36-
uses: actions/cache@v1
36+
uses: actions/cache@v2.1.4
3737
with:
3838
path: ${{ steps.composer-cache.outputs.dir }}
3939
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
4040
restore-keys: ${{ runner.os }}-composer-
4141

4242
- name: Cache PHPUnit cache
43-
uses: actions/cache@v1
43+
uses: actions/cache@v2.1.4
4444
with:
4545
path: tests/.phpunit.result.cache
4646
key: ${{ runner.os }}-phpunit-${{ github.sha }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
4040

4141
- name: Cache composer dependencies
42-
uses: actions/cache@v1
42+
uses: actions/cache@v2.1.4
4343
with:
4444
path: ${{ steps.composer-cache.outputs.dir }}
4545
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)