chore(deps): update anothrnick/github-tag-action action to v1.67.0 #864
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
--- | |
name: trivy-container-scan | |
# Run for all pushes to main and pull requests when Go or YAML files change | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '23 20 * * 2' | |
pull_request: | |
jobs: | |
scan-trivy-1: | |
name: sec-scan-trivy-1 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.19' | |
- name: Build go binary | |
run: | | |
go build -o serverservice . | |
- name: Build | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: false | |
load: true | |
tags: localbuild/sec-scan-trivy:latest | |
- name: Scan image | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: localbuild/sec-scan-trivy:latest | |
format: 'table' | |
exit-code: '1' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH' | |