Skip to content

Commit

Permalink
Fix to use NVD API Key when verify on Win
Browse files Browse the repository at this point in the history
  • Loading branch information
tesshucom committed Feb 18, 2025
1 parent 7711162 commit 283ab05
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ jobs:
retention-days: 7
- name: Verify with Maven on Win
if: contains(matrix.os, 'windows-latest')
run: mvn -DfailIfNoTests=false -DtranscodePath="${{ steps.ffmpeg.outputs.path }}" clean verify -B -Ptomcat-embed -Punit-test
env:
NVD_API_KEY: ${{ secrets.NVD_API_KEY }}
run: mvn -DnvdApiKey=${{ env.NVD_API_KEY }} -DnvdApiDelay=3000 -DnvdMaxRetryCount=10 -DfailIfNoTests=false -DtranscodePath="${{ steps.ffmpeg.outputs.path }}" clean verify -B -Ptomcat-embed -Punit-test
##########################################################################
verify-Java21-or-later:
needs: pre_job
Expand Down

0 comments on commit 283ab05

Please sign in to comment.