fix: remove SAST workflow due to inaccessible action

This commit is contained in:
Alex Notov
2025-09-11 14:52:03 -06:00
parent 5e02d662d1
commit cfb97d9066

View File

@@ -1,27 +0,0 @@
name: SAST Security Monitor
on:
pull_request:
permissions:
contents: read
pull-requests: write
jobs:
security-scan:
runs-on: ubuntu-latest
continue-on-error: true # Never fail the build
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
# fetch-depth: 2 is required to get the previous commit for diff analysis
# The SAST tool needs git history to review changes between commits
fetch-depth: 2
- uses: anthropics/sast@main
with:
mode: monitor
comment-pr: true
upload-results: true
claude-api-key: ${{ secrets.ANTHROPIC_API_KEY }}