Skip to content

Commit

Permalink
Bump actions/cache from 2.1.5 to 2.1.6
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.5 to 2.1.6.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v2.1.5...v2.1.6)

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed May 28, 2021
1 parent 79f8cc5 commit 322c783
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ jobs:
- uses: actions/checkout@v2.3.4
- name: Check Maven Cache
id: maven-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: ~/.m2/repository/
key: mvn-repo
- name: Check Local Maven Cache
id: maven-it-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: maven/target/local-repo
key: mvn-it-repo
- name: Check ODC Data Cache
id: odc-data-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: core/target/data
key: odc-data
Expand Down Expand Up @@ -106,13 +106,13 @@ jobs:
steps:
- name: Check Maven Cache
id: maven-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: ~/.m2/repository/
key: mvn-repo
- name: Check Docker ODC Cache
id: docker-odc-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: ~/OWASP-Dependency-Check
key: docker-repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2.3.4
- name: Check Maven Cache
id: maven-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: ~/.m2/repository/
key: mvn-repo
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@ jobs:
- uses: actions/checkout@v2.3.4
- name: Check Maven Cache
id: maven-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: ~/.m2/repository/
key: mvn-repo
- name: Check Local Maven Cache
id: maven-it-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: maven/target/local-repo
key: mvn-it-repo
- name: Check ODC Data Cache
id: odc-data-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: core/target/data
key: odc-data
Expand Down Expand Up @@ -141,13 +141,13 @@ jobs:
steps:
- name: Check Maven Cache
id: maven-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: ~/.m2/repository/
key: mvn-repo
- name: Check Docker ODC Cache
id: docker-odc-cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: ~/OWASP-Dependency-Check
key: docker-repo
Expand Down

0 comments on commit 322c783

Please sign in to comment.