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 ce07674 commit 47816b1Copy full SHA for 47816b1
1 file changed
.github/workflows/owasp-dependency-check-dotnet.yml
@@ -15,12 +15,13 @@ jobs:
15
steps:
16
- name: Install Dependency-Check
17
run: |
18
- wget https://github.com/jeremylong/DependencyCheck/releases/download/v12.1.0/dependency-check-12.1.0-release.zip
19
- unzip dependency-check-12.1.0-release.zip
+ VERSION=$(curl -s https://dependency-check.github.io/DependencyCheck/current.txt)
+ wget https://github.com/jeremylong/DependencyCheck/releases/download/v$VERSION/dependency-check-$VERSION-release.zip
20
+ unzip dependency-check-$VERSION-release.zip
21
22
- name: Run scan
23
- ./dependency-check-12.1.0-release/bin/dependency-check.sh \
24
+ ./dependency-check-$VERSION-release/bin/dependency-check.sh \
25
--project "cas-dotnet-sdk" \
26
--scan . \
27
--format "HTML" \
0 commit comments