Skip to content

Commit 57f2995

Browse files
committed
Update OWASP dependency check URL
As stated in the `jeremylong` repository: ``` The OWASP DependencyCheck project has moved to https://github.com/dependency-check/DependencyCheck/. Please update any automation that points to the old repository. ``` This commit updates the URL for OWASP check.
1 parent 6424f7e commit 57f2995

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tox-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ 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 \

0 commit comments

Comments
 (0)