We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257ccaa commit b413efeCopy full SHA for b413efe
2 files changed
.github/workflows/owasp-dependency-check.yml
@@ -39,6 +39,13 @@ jobs:
39
with:
40
maven-version: ${{ env.MAVEN_VERSION }}
41
42
+ - uses: actions/cache@v5
43
+ with:
44
+ path: ~/.m2/repository/org/owasp/dependency-check-data
45
+ key: owasp-db-maven
46
+ restore-keys: |
47
+ owasp-db-maven
48
+
49
- name: 'OWASP Dependency Check'
50
continue-on-error: true
51
env:
.github/workflows/qa.yml
@@ -54,5 +54,6 @@ jobs:
54
token: ${{ secrets.GITHUB_TOKEN }}
55
56
- name: 'Cleanup snapshots'
57
+ if: always()
58
run: |
59
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}
0 commit comments