File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ jobs:
17
17
# Runs the ESlint code analysis
18
18
- name : Run ESLint
19
19
# eslint exits 1 if it finds anything to report
20
- run : node_modules/.bin/eslint index.js -f node_modules/@microsoft/eslint-formatter-sarif/sarif.js -o results.sarif || true
20
+ run : node_modules/.bin/eslint index.js -f node_modules/@microsoft/eslint-formatter-sarif/sarif.js -o results.sarif.json || true
21
21
- name : Expose report
22
22
uses : actions/upload-artifact@v2
23
23
with :
24
24
name : SARIF results
25
- path : results.sarif
25
+ path : results.sarif.json
26
26
# Uploads results.sarif to GitHub repository using the upload-sarif action
27
27
- uses : github/codeql-action/upload-sarif@v1
28
28
with :
29
29
# Path to SARIF file relative to the root of the repository
30
- sarif_file : results.sarif
30
+ sarif_file : results.sarif.json
You can’t perform that action at this time.
0 commit comments