| 1234567891011121314151617181920212223242526272829303132333435363738 |
- # This is a basic workflow to help you get started with Actions
- name: Snyk scan
- on:
- # Triggers the workflow on push or pull request events but only for the master branch
- push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
- permissions:
- contents: read
- security-events: write
- jobs:
- # https://github.com/snyk/actions/tree/master/php
- snyk-php:
- runs-on: ubuntu-latest
- if: |
- github.repository == 'PrivateBin/PrivateBin' && (
- github.event.pull_request.author_association == 'COLLABORATOR' ||
- github.event.pull_request.author_association == 'CONTRIBUTOR' ||
- github.event.pull_request.author_association == 'MEMBER' ||
- github.event.pull_request.author_association == 'OWNER' )
- steps:
- - uses: actions/checkout@v6
- - 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@v4
- with:
- sarif_file: snyk.sarif
|