Remove GitHub workflow metadata

ober

e909340856520b23d6e709a0181a37b0fe3767bc

diff --git a/.github/workflows/security-baseline.yml b/.github/workflows/security-baseline.yml
deleted file mode 100644
index 5381c31..0000000
--- a/.github/workflows/security-baseline.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: Security Baseline
-
-on:
-  push:
-    branches: [main, master]
-  pull_request:
-  workflow_dispatch:
-
-permissions:
-  contents: read
-
-jobs:
-  baseline:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
-
-      - name: Required release files
-        run: |
-          set -eu
-          test -f LICENSE
-          test -f SECURITY.md
-          test -f .gitignore
-          find . -maxdepth 1 -iname "README*" -type f | grep -q .
-
-      - name: High-confidence secret scan
-        run: |
-          set -eu
-          pattern="(BEGIN (RSA|OPENSSH|EC|DSA|PRIVATE) KEY|ghp_[A-Za-z0-9_]{20,}|github_pat_[A-Za-z0-9_]{20,}|sk-(ant-api03|proj|svcacct)-[A-Za-z0-9_-]{30,}|AKIA[0-9A-Z]{16})"
-          matches="$(git grep -n -I -E "$pattern" -- . ":!*.png" ":!*.jpg" ":!*.jpeg" ":!*.gif" ":!*.so" ":!*.dylib" ":!*.o" ":!*.a" ":!*.boot" ":!*.tar.gz" || true)"
-          if [ -n "$matches" ]; then
-            echo "$matches"
-            echo "High-confidence secret pattern found."
-            exit 1
-          fi