|
|
|
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@ac593985615ec2ede58e132d2e21d2b1cbd6127c
|
|
|
|
- name: Run FOSSA scan and upload build data
|
|
|
|
uses: fossa-contrib/fossa-action@6728dc6fe9a068c648d080c33829ffbe56565023 # v1
|
|
|
|
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@ac593985615ec2ede58e132d2e21d2b1cbd6127c
|
|
|
|
- name: Setup Kustomize
|
|
|
|
uses: fluxcd/pkg//actions/kustomize@main
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568
|
|
|
|
with:
|
|
|
|
go-version: 1.19.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@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2
|
|
|
|
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@ac593985615ec2ede58e132d2e21d2b1cbd6127c
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568
|
|
|
|
with:
|
|
|
|
go-version: 1.19.x
|
|
|
|
- name: Initialize CodeQL
|
|
|
|
uses: github/codeql-action/init@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2
|
|
|
|
with:
|
|
|
|
languages: go
|
|
|
|
- name: Autobuild
|
|
|
|
uses: github/codeql-action/autobuild@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2
|
|
|
|
- name: Perform CodeQL Analysis
|
|
|
|
uses: github/codeql-action/analyze@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2
|