Skip to content

Commit 521504e

Browse files
fix syntax error
1 parent 0108454 commit 521504e

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/dependency-check.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,16 @@ jobs:
2121
with:
2222
distribution: 'temurin'
2323
java-version: 21
24-
- uses: actions/cache@v3
25-
with:
26-
path: ~/.m2/repository
27-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-dependency-check
28-
restore-keys: |
29-
${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
30-
${{ runner.os }}-maven-
31-
env:
32-
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5
24+
- name: Cache Maven Repository
25+
uses: actions/cache@v3
26+
with:
27+
path: ~/.m2/repository
28+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-dependency-check
29+
restore-keys: |
30+
${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
31+
${{ runner.os }}-maven-
32+
env:
33+
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5
3334
- name: Run org.owasp:dependency-check plugin
3435
id: dependency-check
3536
continue-on-error: true

0 commit comments

Comments
 (0)