[release-1.31] Migrate ZoneClient + PLSClient to SDK track2 #7739
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 scanner | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master, 'release-**' ] | |
paths: | |
- '.github/workflows/trivy.yaml' | |
- 'pkg/**.go' | |
- '!pkg/azureclients/v2/**.go' | |
- '!kubetest2-aks/**.go' | |
- 'cmd/**.go' | |
- 'go.*' | |
- '!vendor/**' | |
- 'health-probe-proxy/**' | |
pull_request: | |
branches: [ master, 'release-**' ] | |
paths: | |
- '.github/workflows/trivy.yaml' | |
- 'pkg/**.go' | |
- '!pkg/azureclients/v2/**.go' | |
- '!kubetest2-aks/**.go' | |
- 'cmd/**.go' | |
- 'go.*' | |
- '!vendor/**' | |
- 'health-probe-proxy/**' | |
schedule: | |
- cron: '35 12 * * 4' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
permissions: | |
contents: write # for actions/checkout to fetch code and submit sbom | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Go 1.x | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: '>=1.20' | |
check-latest: true | |
id: go | |
- name: Build images | |
run: | | |
export TAG=${{ github.sha }} | |
export IMAGE_TAG=${{ github.sha }} | |
make build-ccm-image | |
make build-node-image-linux-amd64 | |
cd health-probe-proxy && make build-health-probe-proxy-image && cd .. | |
- name: Run Trivy scanner CCM | |
uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 # master | |
with: | |
image-ref: 'local/azure-cloud-controller-manager:${{ github.sha }}' | |
format: 'sarif' | |
output: 'trivy-ccm-results.sarif' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN' | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0 | |
with: | |
sarif_file: 'trivy-ccm-results.sarif' | |
category: azure-cloud-controller-manager-image | |
- name: Run Trivy scanner CNM | |
uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 # master | |
with: | |
image-ref: 'local/azure-cloud-node-manager:${{ github.sha }}-linux-amd64' | |
format: 'sarif' | |
output: 'trivy-cnm-linux-results.sarif' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN' | |
skip-setup-trivy: true | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0 | |
with: | |
sarif_file: 'trivy-cnm-linux-results.sarif' | |
category: azure-cloud-node-manager-linux-image | |
- name: Run Trivy scanner health-probe-proxy | |
uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 # master | |
with: | |
image-ref: 'local/health-probe-proxy:${{ github.sha }}' | |
format: 'sarif' | |
output: 'trivy-health-probe-proxy-linux-results.sarif' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN' | |
skip-setup-trivy: true | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
sarif_file: 'trivy-health-probe-proxy-linux-results.sarif' | |
category: health-probe-proxy-linux-image | |
- name: fetch go code | |
run: | | |
go mod tidy | |
- name: Run Trivy vulnerability scanner in repo mode | |
uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 # master | |
with: | |
scan-type: 'fs' | |
ignore-unfixed: true | |
format: 'github' | |
output: 'dependency-results.sbom.json' | |
image-ref: '.' | |
github-pat: ${{ secrets.GITHUB_TOKEN }} | |
skip-setup-trivy: true |