Skip to content

Commit

Permalink
feat(static-analysis): refactoring semgrep action path
Browse files Browse the repository at this point in the history
This PR introduces the updated action path for Semgrep with additional changes, moving from
static-analysis/semgrep to static-analysis in preparation for the @V3 release.

BREAKING CHANGE: The action path has been updated, requiring repositories to update their workflows:
from open-turo/actions-security/static-analysis/semgrep@v2 to open-turo/actions-security/static-analysis@v3

Renovate Bot will create pull requests for repositories referencing @v2 to help with the transition however the manual changes(job name and adding pulling condition) needs to added. Refer the docs/breaking-changes/v3.md for additional details
  • Loading branch information
pkanoongo committed Dec 17, 2024
1 parent 60bca96 commit 742d2b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/breaking-changes/v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
if: github.event_name == 'pull_request' # Added Condition
steps:
- uses: actions/checkout@v4
- uses: open-turo/actions-security/static-analysis@v3 #Updated Path
- uses: open-turo/actions-security/static-analysis@v3 #Updated Action Path
with:
semgrep-app-token: ${{ secrets.SEMGREP_APP_TOKEN }}
```

0 comments on commit 742d2b8

Please sign in to comment.