chore(deps): update terraform modules: Bump hashicorp/aws from 5.81.0 to 5.82.2 in /samples/bedrock-guardrails #224
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: semgrep | |
on: | |
pull_request: {} | |
workflow_dispatch: {} | |
push: | |
branches: | |
- main | |
permissions: read-all | |
jobs: | |
semgrep: | |
name: semgrep/ci | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: read | |
security-events: write | |
actions: read | |
if: (github.actor != 'dependabot[bot]') | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Run Semgrep CI | |
run: semgrep scan --verbose --json --output=semgrep.json | |
- name: Store Semgrep as Artifact | |
uses: actions/upload-artifact@184d73b71b93c222403b2e7f1ffebe4508014249 | |
with: | |
name: semgrep.json | |
path: semgrep.json | |
container: | |
image: semgrep/semgrep |