Update actions/cache requirement to v2.1.4
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](26968a09c0
)
Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
9d1c3edad3
commit
109fd2b8bf
|
@ -46,7 +46,7 @@ jobs:
|
|||
java-version: ${{ env.JAVA_VERSION }}
|
||||
- name: Cache maven dependencies
|
||||
id: cache
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}
|
||||
|
@ -87,13 +87,13 @@ jobs:
|
|||
node-version: ${{ env.NODE_VERSION }}
|
||||
- name: Cache web dependencies
|
||||
id: web-cache
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: web/node_modules
|
||||
key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/package-lock.json') }}
|
||||
restore-keys: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}
|
||||
- name: Cache maven dependencies (for web)
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.OS }}-${{ env.CACHE_MAVEN_FOR_WEB_NAME }}-${{ hashFiles('**/pom.xml') }}
|
||||
|
@ -137,7 +137,7 @@ jobs:
|
|||
with:
|
||||
java-version: 8
|
||||
- name: Cache maven dependencies
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}
|
||||
|
@ -170,7 +170,7 @@ jobs:
|
|||
node-version: ${{ env.NODE_VERSION }}
|
||||
- name: Cache web dependencies
|
||||
id: web-cache
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: web/node_modules
|
||||
key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/package-lock.json') }}
|
||||
|
@ -182,7 +182,7 @@ jobs:
|
|||
working-directory: web
|
||||
run: npm ci
|
||||
- name: Cache maven dependencies
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}
|
||||
|
@ -254,7 +254,7 @@ jobs:
|
|||
with:
|
||||
java-version: ${{ env.JAVA_VERSION }}
|
||||
- name: Cache maven dependencies
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}
|
||||
|
@ -295,7 +295,7 @@ jobs:
|
|||
with:
|
||||
java-version: 8
|
||||
- name: Cache maven dependencies
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}
|
||||
|
@ -338,7 +338,7 @@ jobs:
|
|||
with:
|
||||
java-version: ${{ env.JAVA_VERSION }}
|
||||
- name: Cache maven dependencies
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}
|
||||
|
@ -393,7 +393,7 @@ jobs:
|
|||
with:
|
||||
java-version: ${{ env.JAVA_VERSION }}
|
||||
- name: Cache maven dependencies
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}
|
||||
|
@ -447,13 +447,13 @@ jobs:
|
|||
with:
|
||||
java-version: ${{ env.JAVA_VERSION }}
|
||||
- name: Cache SonarCloud packages
|
||||
uses: actions/cache@v1
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: ~/.sonar/cache
|
||||
key: ${{ runner.os }}-${{ env.CACHE_SONAR_NAME }}
|
||||
restore-keys: ${{ runner.os }}-${{ env.CACHE_SONAR_NAME }}
|
||||
- name: Cache maven dependencies
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v2.1.4
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}
|
||||
|
|
Loading…
Reference in New Issue