Skip to content

Commit fe30c44

Browse files
authoredNov 26, 2021
Merge pull request #48 from neilime/dependabot/github_actions/actions/cache-2.1.7
2 parents 84acd8e + 31f791e commit fe30c44

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.github/workflows/continuous-integration.yml

+2-2
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@v2.1.6
36+
uses: actions/cache@v2.1.7
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@v2.1.6
43+
uses: actions/cache@v2.1.7
4444
with:
4545
path: tests/.phpunit.result.cache
4646
key: ${{ runner.os }}-phpunit-${{ github.sha }}

‎.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
5252

5353
- name: Cache composer dependencies
54-
uses: actions/cache@v2.1.6
54+
uses: actions/cache@v2.1.7
5555
with:
5656
path: ${{ steps.composer-cache.outputs.dir }}
5757
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)
Please sign in to comment.