Skip to content

Commit 4f067f3

Browse files
Update actions/cache requirement to v2.1.4 (#218)
Updates the requirements on [actions/cache](https://github.com/actions/cache) to permit the latest version. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/commits/26968a09c0ea4f3e233fdddbafd1166051a095f6) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 78001e8 commit 4f067f3

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
key: ${{ env.key }}
8383

8484
- name: Cache extensions
85-
uses: actions/cache@v1
85+
uses: actions/cache@v2.1.4
8686
with:
8787
path: ${{ steps.cache-env.outputs.dir }}
8888
key: ${{ steps.cache-env.outputs.key }}
@@ -101,7 +101,7 @@ jobs:
101101
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
102102

103103
- name: Cache dependencies installed with composer
104-
uses: actions/cache@v2.1.3
104+
uses: actions/cache@v2.1.4
105105
with:
106106
path: ${{ env.COMPOSER_CACHE_DIR }}
107107
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

.github/workflows/db-mssql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
key: ${{ env.key }}
5555

5656
- name: Cache extensions
57-
uses: actions/cache@v2.1.1
57+
uses: actions/cache@v2.1.4
5858
with:
5959
path: ${{ steps.cache.outputs.dir }}
6060
key: ${{ steps.cache.outputs.key }}
@@ -73,7 +73,7 @@ jobs:
7373
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
7474

7575
- name: Cache dependencies installed with composer
76-
uses: actions/cache@v2.1.3
76+
uses: actions/cache@v2.1.4
7777
with:
7878
path: ${{ env.COMPOSER_CACHE_DIR }}
7979
key: php${{ matrix.php }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}

.github/workflows/db-mysql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
key: ${{ env.key }}
5151

5252
- name: Cache extensions
53-
uses: actions/cache@v2.1.3
53+
uses: actions/cache@v2.1.4
5454
with:
5555
path: ${{ steps.cache-env.outputs.dir }}
5656
key: ${{ steps.cache-env.outputs.key }}
@@ -68,7 +68,7 @@ jobs:
6868
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
6969

7070
- name: Cache dependencies installed with composer
71-
uses: actions/cache@v2
71+
uses: actions/cache@v2.1.4
7272
with:
7373
path: ${{ env.COMPOSER_CACHE_DIR }}
7474
key: php${{ matrix.php }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}

.github/workflows/db-pgsql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
key: ${{ env.key }}
5555

5656
- name: Cache extensions
57-
uses: actions/cache@v2.1.3
57+
uses: actions/cache@v2.1.4
5858
with:
5959
path: ${{ steps.cache-env.outputs.dir }}
6060
key: ${{ steps.cache-env.outputs.key }}
@@ -72,7 +72,7 @@ jobs:
7272
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
7373

7474
- name: Cache dependencies installed with composer
75-
uses: actions/cache@v2
75+
uses: actions/cache@v2.1.4
7676
with:
7777
path: ${{ env.COMPOSER_CACHE_DIR }}
7878
key: php${{ matrix.php }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
3939

4040
- name: Cache dependencies installed with composer
41-
uses: actions/cache@v1
41+
uses: actions/cache@v2.1.4
4242
with:
4343
path: ${{ env.COMPOSER_CACHE_DIR }}
4444
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)