Merge pull request #101 from controlplaneio-fluxcd/update-images-v2.3.0 #46
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: License scan | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Flux version' | |
required: false | |
push: | |
branches: | |
- 'main' | |
- 'license-*' | |
jobs: | |
trivy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Latest release | |
id: release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
VERSION=$(gh release view --json tagName -q '.tagName') | |
if [ "${{ github.event.inputs.version }}" != "" ]; then | |
VERSION="${{ github.event.inputs.version }}" | |
fi | |
echo "version=${VERSION}" >> $GITHUB_OUTPUT | |
- name: Checkout Flux | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
repository: fluxcd/flux2 | |
ref: ${{ steps.release.outputs.version }} | |
- name: Setup Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version-file: 'go.mod' | |
- name: Download Flux dependencies | |
run: | | |
make tidy | |
- name: Setup Trivy | |
run: | | |
sudo apt-get install wget apt-transport-https gnupg lsb-release | |
wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | gpg --dearmor | sudo tee /usr/share/keyrings/trivy.gpg > /dev/null | |
echo "deb [signed-by=/usr/share/keyrings/trivy.gpg] https://aquasecurity.github.io/trivy-repo/deb $(lsb_release -sc) main" | sudo tee -a /etc/apt/sources.list.d/trivy.list | |
sudo apt-get update | |
sudo apt-get install trivy | |
- name: License report | |
run: | | |
trivy fs -q --format table --scanners license --severity UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL ./go.mod | |
- name: License check | |
run: | | |
trivy fs -q --format table --scanners license --severity UNKNOWN,HIGH,CRITICAL ./go.mod --exit-code 1 |