Skip to content

Commit

Permalink
Merge pull request #4107 from Coduz/fix-owaspCheckMissingSwaggerCLI
Browse files Browse the repository at this point in the history
🐛 [CI] Added missing installation of Node JS and swagger required to build the project for Owasp Dependency Check
  • Loading branch information
Coduz authored Sep 24, 2024
2 parents 9686af7 + 08e87ff commit baaa4f4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/security-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ jobs:
distribution: 'zulu'
java-version: 11
cache: 'maven'
- uses: actions/setup-node@v4 # Installs Node and NPM
with:
node-version: 16
- name: Install Swagger CLI # Installs Swagger CLI to bundle OpenAPI files
run: 'npm install -g @apidevtools/swagger-cli'
- uses: actions/cache@v4 # Cache local Maven repository to reuse dependencies
with:
path: ~/.m2/repository
Expand Down

0 comments on commit baaa4f4

Please sign in to comment.