Delete .github/workflows/main.yml

This commit is contained in:
Naiel
2026-02-19 10:33:56 +01:00
committed by GitHub
parent c8c9c10293
commit 516c9a645d

View File

@@ -1,24 +0,0 @@
name: Example workflow for PHP using Snyk
on: push
jobs:
security:
runs-on: ubuntu-latest
permissions:
security-events: write
# If your repository is private, also add:
actions: read
contents: read
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/php@master
continue-on-error: true # To make sure that SARIF upload gets called
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
args: --sarif-file-output=snyk.sarif
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: snyk.sarif