From 53dcdead88976be3ce4c4418c65ab96cbc149a6a Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Tue, 4 Aug 2026 11:20:40 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5(ci)=20remove=20unused=20Anthropic?= =?UTF-8?q?=20security=20step?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop the Anthropic security step from the project CI, as it is no longer used and only added noise to the pipeline. --- .github/workflows/security.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/security.yaml diff --git a/.github/workflows/security.yaml b/.github/workflows/security.yaml deleted file mode 100644 index 19a2b84d..00000000 --- a/.github/workflows/security.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# /!\ -# Security Note: This action is not hardened against prompt injection attacks and should only be used -# to review trusted PRs. Configure your repository with "Require approval for all external contributors" -# to ensure workflows only run after a maintainer has reviewed the PR. -name: Security Review - -permissions: - pull-requests: write # Needed for leaving PR comments - contents: read - -on: - pull_request: - branches: - - 'main' - -jobs: - security: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - with: - ref: ${{ github.event.pull_request.head.sha || github.sha }} - fetch-depth: 2 - - - uses: anthropics/claude-code-security-review@0c6a49f1fa56a1d472575da86a94dbc1edb78eda - with: - comment-pr: true - exclude-directories: docs,gitlint,LICENSES,bin - claude-api-key: ${{ secrets.CLAUDE_API_KEY }}