From f9c3799b71a0d00856ea6fc9f170347073d32237 Mon Sep 17 00:00:00 2001 From: Ivan Sanchez Date: Sat, 28 Feb 2026 03:10:40 -0600 Subject: [PATCH] fix: remove redundant Socket Security workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Socket Security GitHub App (installed via marketplace) automatically scans PRs for supply chain risks. The separate workflow used a non-existent action (SocketDev/socket-security-py-action) and is unnecessary — the app handles PR scanning natively. --- .github/workflows/socket-security.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/socket-security.yml diff --git a/.github/workflows/socket-security.yml b/.github/workflows/socket-security.yml deleted file mode 100644 index f728abd..0000000 --- a/.github/workflows/socket-security.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Socket Security - -on: - pull_request: - branches: [main] - -jobs: - scan: - runs-on: ubuntu-latest - permissions: - contents: read - pull-requests: write - issues: write - security-events: write - steps: - - uses: actions/checkout@v6 - - - uses: SocketDev/socket-security-py-action@v1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }}