Skip to content

Commit

Permalink
fix(workflows/codacy-analysis): Bump codacy/codacy-analysis-cli-actio…
Browse files Browse the repository at this point in the history
…n to v4 and upload-sarif to v2
  • Loading branch information
fuzzypixelz committed Dec 18, 2023
1 parent 0034974 commit 8d400c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codacy-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ name: Codacy Security Scan

on:
push:
branches: [ '**' ]
branches: ["**"]
pull_request:
branches: [ '**' ]
branches: ["**"]

jobs:
codacy-security-scan:
Expand All @@ -25,7 +25,7 @@ jobs:

# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI
uses: codacy/codacy-analysis-cli-action@1.1.0
uses: codacy/codacy-analysis-cli-action@releases/v4
with:
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
# You can also omit the token and run the tools that support default configurations
Expand All @@ -41,6 +41,6 @@ jobs:

# Upload the SARIF file generated in the previous step
- name: Upload SARIF results file
uses: github/codeql-action/upload-sarif@v1
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: results.sarif

0 comments on commit 8d400c3

Please sign in to comment.