Include gui when doing go releaser #144
Workflow file for this run
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: trivy | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
schedule: | |
# every Monday at 7:31pm | |
- cron: '31 19 * * 1' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | |
name: Build | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Trivy | |
run: | | |
sudo apt-get install wget apt-transport-https gnupg lsb-release -y | |
wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | sudo apt-key add - | |
echo deb 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 -y | |
- name: Run vulnerability scanner | |
run: | | |
trivy fs ./ --scanners license --exit-code 1 --severity HIGH,CRITICAL | |
trivy fs ./ --exit-code 1 --severity MEDIUM,HIGH,CRITICAL --dependency-tree | |
#TODO: maybe use this when codeql is available (after publishing) | |
# - name: Upload Trivy scan results to GitHub Security tab | |
# uses: github/codeql-action/upload-sarif@v2 | |
# with: | |
# sarif_file: 'trivy-results-binary.sarif' |