Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-trace authored Oct 29, 2024
1 parent 6d88021 commit be1f401
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions trivy-fs-scan/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ runs:
- name: Get current date
shell: sh
id: date
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
run: |
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Download and extract the vulnerability DB
shell: sh
Expand Down Expand Up @@ -119,8 +120,8 @@ runs:
skip-files: ${{ inputs.skip-files }}
exit-code: '1'
env:
TRIVY_SKIP_DB_UPDATE: true
TRIVY_SKIP_JAVA_DB_UPDATE: true
TRIVY_SKIP_DB_UPDATE: 'true'
TRIVY_SKIP_JAVA_DB_UPDATE: 'true'

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
Expand Down

0 comments on commit be1f401

Please sign in to comment.