Skip to content

Commit 56fac58

Browse files
authored
Merge pull request #30 from neilime/dependabot/github_actions/actions/cache-v2.1.4
Bump actions/cache from v1 to v2.1.4
2 parents fb2b019 + e57bdc8 commit 56fac58

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)