Skip to content

Commit a31e81f

Browse files
authored
Merge pull request #91 from release-engineering/owasp-fix
Update OWASP dependency check URL
2 parents 6424f7e + d012e27 commit a31e81f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tox-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,15 @@ jobs:
108108
restore-keys: ${{ runner.os }}-build-owasp-
109109
- name: OWASP check
110110
run: |
111-
VERSION=$(curl -s https://jeremylong.github.io/DependencyCheck/current.txt)
112-
curl -L "https://github.com/jeremylong/DependencyCheck/releases/download/v$VERSION/dependency-check-$VERSION-release.zip" --output dependency-check.zip
111+
VERSION=$(curl -s https://dependency-check.github.io/DependencyCheck/current.txt)
112+
curl -Ls "https://github.com/dependency-check/DependencyCheck/releases/download/v$VERSION/dependency-check-$VERSION-release.zip" --output dependency-check.zip
113113
unzip -o dependency-check.zip
114114
rm -f dependency-check.zip
115115
./dependency-check/bin/dependency-check.sh \
116116
--project "starmap-client" \
117117
--out "dependency-check" \
118118
--format "ALL" \
119+
--nvdApiKey ${{ secrets.OWASP_API_KEY }} \
119120
--enableExperimental \
120121
--scan . \
121122
--data .code_scanning/dependency-check/data \

0 commit comments

Comments
 (0)