Weekly security scan #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Weekly security scan | |
on: | |
schedule: | |
# Cron for every Monday at 12:00 UTC. | |
- cron: "0 12 * * 1" | |
# Remove all permissions from GITHUB_TOKEN except metadata. | |
permissions: {} | |
jobs: | |
scan: | |
strategy: | |
fail-fast: false | |
matrix: | |
branch: [ main, release-1.6, release-1.5 ] | |
name: Trivy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1 | |
with: | |
ref: ${{ matrix.branch }} | |
- name: Calculate go version | |
id: vars | |
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT | |
- name: Set up Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # tag=v5.0.0 | |
with: | |
go-version: ${{ steps.vars.outputs.go_version }} | |
- name: Run verify security target | |
run: make verify-security |