|
|
|
name: scan
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
schedule:
|
|
|
|
- cron: '18 10 * * 3'
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
scan-fossa:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.actor != 'dependabot[bot]'
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
|
|
|
|
- name: Run FOSSA scan and upload build data
|
|
|
|
uses: fossa-contrib/fossa-action@6728dc6fe9a068c648d080c33829ffbe56565023 # v2.0.0
|
|
|
|
with:
|
|
|
|
# FOSSA Push-Only API Token
|
|
|
|
fossa-api-key: 5ee8bf422db1471e0bcf2bcb289185de
|
|
|
|
github-token: ${{ github.token }}
|
|
|
|
|
|
|
|
scan-snyk:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
security-events: write
|
|
|
|
if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && github.actor != 'dependabot[bot]'
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
|
|
|
|
- name: Setup Kustomize
|
|
|
|
uses: fluxcd/pkg/actions/kustomize@main
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
|
|
|
|
with:
|
|
|
|
go-version: 1.20.x
|
|
|
|
- name: Download modules and build manifests
|
|
|
|
run: |
|
|
|
|
make tidy
|
|
|
|
make cmd/flux/.manifests.done
|
|
|
|
- uses: snyk/actions/setup@806182742461562b67788a64410098c9d9b96adb
|
|
|
|
- name: Run Snyk to check for vulnerabilities
|
|
|
|
continue-on-error: true
|
|
|
|
run: |
|
|
|
|
snyk test --sarif-file-output=snyk.sarif
|
|
|
|
env:
|
|
|
|
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
|
|
|
- name: Upload result to GitHub Code Scanning
|
|
|
|
uses: github/codeql-action/upload-sarif@168b99b3c22180941ae7dbdd5f5c9678ede476ba # v2.2.7
|
|
|
|
with:
|
|
|
|
sarif_file: snyk.sarif
|
|
|
|
|
|
|
|
scan-codeql:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
security-events: write
|
|
|
|
if: github.actor != 'dependabot[bot]'
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
|
|
|
|
with:
|
|
|
|
go-version: 1.20.x
|
|
|
|
- name: Initialize CodeQL
|
|
|
|
uses: github/codeql-action/init@168b99b3c22180941ae7dbdd5f5c9678ede476ba # v2.2.7
|
|
|
|
with:
|
|
|
|
languages: go
|
|
|
|
- name: Autobuild
|
|
|
|
uses: github/codeql-action/autobuild@168b99b3c22180941ae7dbdd5f5c9678ede476ba # v2.2.7
|
|
|
|
- name: Perform CodeQL Analysis
|
|
|
|
uses: github/codeql-action/analyze@168b99b3c22180941ae7dbdd5f5c9678ede476ba # v2.2.7
|