Skip to content

ci: Workflow Updates #76

ci: Workflow Updates

ci: Workflow Updates #76

Workflow file for this run

name: Snyk
on:
merge_group:
pull_request:
types:
- opened
- synchronize
push:
branches:
- main
schedule:
- cron: "30 0 1,15 * *"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
configure:
name: Configure
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- id: set-matrix
run: echo "matrix=$(jq -c . < ./.github/workflows/matrix.json)" >> $GITHUB_OUTPUT
check:
needs: [configure]
name: Check for Vulnerabilities
runs-on: ubuntu-latest
steps:
- if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group'
run: exit 0
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
php: ${{ fromJson(needs.configure.outputs.matrix.include[0].php) }}
- run: npm install snyk -g
- if: github.ref == 'refs/heads/main'
run: snyk monitor --file=composer.lock
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
continue-on-error: true
- run: snyk test --file=composer.lock
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}