Skip to content
This repository was archived by the owner on Mar 14, 2024. It is now read-only.

Commit e06a46c

Browse files
build(deps): bump actions/cache from 2 to 3.0.1
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2...v3.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent aacca48 commit e06a46c

File tree

6 files changed

+26
-26
lines changed

6 files changed

+26
-26
lines changed

.github/workflows/backend-pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
# Caching
3131
- name: Cache Gradle deps
32-
uses: actions/cache@v2
32+
uses: actions/cache@v3.0.1
3333
with:
3434
path: |
3535
~/.gradle/caches
@@ -39,7 +39,7 @@ jobs:
3939
${{ runner.os }}-gradle-
4040
4141
- name: Cache Rush temp files
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3.0.1
4343
with:
4444
path: |
4545
common/temp
@@ -48,7 +48,7 @@ jobs:
4848
${{ runner.os }}-rush-
4949
5050
- name: Cache NPM
51-
uses: actions/cache@v2
51+
uses: actions/cache@v3.0.1
5252
with:
5353
path: ~/.npm
5454
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -59,15 +59,15 @@ jobs:
5959
id: yarn-cache-dir-path
6060
run: echo "::set-output name=dir::$(yarn cache dir)"
6161
- name: Cache Yarn
62-
uses: actions/cache@v2
62+
uses: actions/cache@v3.0.1
6363
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
6464
with:
6565
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
6666
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
6767
restore-keys: |
6868
${{ runner.os }}-yarn-
6969
- name: Cache SonarCloud packages
70-
uses: actions/cache@v1
70+
uses: actions/cache@v3.0.1
7171
with:
7272
path: ~/.sonar/cache
7373
key: ${{ runner.os }}-sonar

.github/workflows/backend.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
# Caching
4141
- name: Cache Gradle deps
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3.0.1
4343
with:
4444
path: |
4545
~/.gradle/caches
@@ -49,7 +49,7 @@ jobs:
4949
${{ runner.os }}-gradle-
5050
5151
- name: Cache NPM
52-
uses: actions/cache@v2
52+
uses: actions/cache@v3.0.1
5353
with:
5454
path: ~/.npm
5555
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -60,15 +60,15 @@ jobs:
6060
id: yarn-cache-dir-path
6161
run: echo "::set-output name=dir::$(yarn cache dir)"
6262
- name: Cache Yarn
63-
uses: actions/cache@v2
63+
uses: actions/cache@v3.0.1
6464
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
6565
with:
6666
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
6767
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
6868
restore-keys: |
6969
${{ runner.os }}-yarn-
7070
- name: Cache SonarCloud packages
71-
uses: actions/cache@v1
71+
uses: actions/cache@v3.0.1
7272
with:
7373
path: ~/.sonar/cache
7474
key: ${{ runner.os }}-sonar
@@ -152,7 +152,7 @@ jobs:
152152

153153
# Cache Docker layers
154154
- name: Cache Docker layers
155-
uses: actions/cache@v2
155+
uses: actions/cache@v3.0.1
156156
with:
157157
path: /tmp/.buildx-cache
158158
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/development.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
# Caching
2727
- name: Cache Gradle deps
28-
uses: actions/cache@v2
28+
uses: actions/cache@v3.0.1
2929
with:
3030
path: |
3131
~/.gradle/caches
@@ -35,7 +35,7 @@ jobs:
3535
${{ runner.os }}-gradle-
3636
3737
- name: Cache Rush temp files
38-
uses: actions/cache@v2
38+
uses: actions/cache@v3.0.1
3939
with:
4040
path: |
4141
common/temp
@@ -44,7 +44,7 @@ jobs:
4444
${{ runner.os }}-rush-
4545
4646
- name: Cache NPM
47-
uses: actions/cache@v2
47+
uses: actions/cache@v3.0.1
4848
with:
4949
path: ~/.npm
5050
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -55,15 +55,15 @@ jobs:
5555
id: yarn-cache-dir-path
5656
run: echo "::set-output name=dir::$(yarn cache dir)"
5757
- name: Cache Yarn
58-
uses: actions/cache@v2
58+
uses: actions/cache@v3.0.1
5959
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
6060
with:
6161
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
6262
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
6363
restore-keys: |
6464
${{ runner.os }}-yarn-
6565
- name: Cache SonarCloud packages
66-
uses: actions/cache@v1
66+
uses: actions/cache@v3.0.1
6767
with:
6868
path: ~/.sonar/cache
6969
key: ${{ runner.os }}-sonar

.github/workflows/frontend-pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
# Caching
3131
- name: Cache Gradle deps
32-
uses: actions/cache@v2
32+
uses: actions/cache@v3.0.1
3333
with:
3434
path: |
3535
~/.gradle/caches
@@ -39,7 +39,7 @@ jobs:
3939
${{ runner.os }}-gradle-
4040
4141
- name: Cache Rush temp files
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3.0.1
4343
with:
4444
path: |
4545
common/temp
@@ -48,7 +48,7 @@ jobs:
4848
${{ runner.os }}-rush-
4949
5050
- name: Cache NPM
51-
uses: actions/cache@v2
51+
uses: actions/cache@v3.0.1
5252
with:
5353
path: ~/.npm
5454
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -59,15 +59,15 @@ jobs:
5959
id: yarn-cache-dir-path
6060
run: echo "::set-output name=dir::$(yarn cache dir)"
6161
- name: Cache Yarn
62-
uses: actions/cache@v2
62+
uses: actions/cache@v3.0.1
6363
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
6464
with:
6565
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
6666
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
6767
restore-keys: |
6868
${{ runner.os }}-yarn-
6969
- name: Cache SonarCloud packages
70-
uses: actions/cache@v1
70+
uses: actions/cache@v3.0.1
7171
with:
7272
path: ~/.sonar/cache
7373
key: ${{ runner.os }}-sonar

.github/workflows/frontend.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
# Caching
4141
- name: Cache Rush temp files
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3.0.1
4343
with:
4444
path: |
4545
common/temp
@@ -48,7 +48,7 @@ jobs:
4848
${{ runner.os }}-rush-
4949
5050
- name: Cache NPM
51-
uses: actions/cache@v2
51+
uses: actions/cache@v3.0.1
5252
with:
5353
path: ~/.npm
5454
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -59,7 +59,7 @@ jobs:
5959
id: yarn-cache-dir-path
6060
run: echo "::set-output name=dir::$(yarn cache dir)"
6161
- name: Cache Yarn
62-
uses: actions/cache@v2
62+
uses: actions/cache@v3.0.1
6363
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
6464
with:
6565
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -103,7 +103,7 @@ jobs:
103103

104104
# Cache Docker layers
105105
- name: Cache Docker layers
106-
uses: actions/cache@v2
106+
uses: actions/cache@v3.0.1
107107
with:
108108
path: /tmp/.buildx-cache
109109
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
node-version: '12'
3131

3232
- name: Cache Gradle deps
33-
uses: actions/cache@v2
33+
uses: actions/cache@v3.0.1
3434
with:
3535
path: |
3636
~/.gradle/caches
@@ -40,7 +40,7 @@ jobs:
4040
${{ runner.os }}-gradle-
4141
4242
- name: Cache Rush temp files
43-
uses: actions/cache@v2
43+
uses: actions/cache@v3.0.1
4444
with:
4545
path: |
4646
common/temp

0 commit comments

Comments
 (0)