Skip to content

Commit

Permalink
Fix deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Sep 11, 2024
1 parent a53d9e4 commit b5ee693
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dockerfile-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
id: check_sarif
run: |
if [ -f testResults/hadolint-results.sarif ]; then
echo "::set-output name=file_exists::true"
echo "file_exists=true" >> $GITHUB_OUTPUT
else
echo "::set-output name=file_exists::false"
echo "file_exists=false" >> $GITHUB_OUTPUT
fi
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
if: always() && steps.check_sarif.outputs.file_exists == 'true'
with:
sarif_file: testResults/hadolint-results.sarif
Expand Down

0 comments on commit b5ee693

Please sign in to comment.