Skip to content

build(deps): bump k8s.io/component-base from 0.34.1 to 0.34.2 in /health-probe-proxy in the all group #11259

build(deps): bump k8s.io/component-base from 0.34.1 to 0.34.2 in /health-probe-proxy in the all group

build(deps): bump k8s.io/component-base from 0.34.1 to 0.34.2 in /health-probe-proxy in the all group #11259

Workflow file for this run

name: Trivy scanner
on:
workflow_dispatch:
push:
branches: [ master, 'release-**' ]
paths:
- '.github/workflows/trivy.yaml'
- 'pkg/**.go'
- '!kubetest2-aks/**.go'
- 'cmd/**.go'
- 'go.*'
- '!vendor/**'
- 'health-probe-proxy/**'
pull_request:
branches: [ master, 'release-**' ]
paths:
- '.github/workflows/trivy.yaml'
- 'pkg/**.go'
- '!kubetest2-aks/**.go'
- 'cmd/**.go'
- 'go.*'
- '!vendor/**'
- 'health-probe-proxy/**'
schedule:
- cron: '0 1 * * *'
permissions:
contents: read
jobs:
build:
permissions:
contents: write # for 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@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Discover Go modules
id: gomods
uses: ./.github/actions/discover-go-modules
- name: Set up Go 1.x
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: ${{ steps.gomods.outputs.version }}
check-latest: true
cache-dependency-path: ${{ steps.gomods.outputs.gosums }}
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@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # 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'
env:
TRIVY_SKIP_DB_UPDATE: true
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3.29.5
with:
sarif_file: 'trivy-ccm-results.sarif'
category: azure-cloud-controller-manager-image
- name: Run Trivy scanner CNM
uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # 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'
env:
TRIVY_SKIP_DB_UPDATE: true
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3.29.5
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@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # 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'
env:
TRIVY_SKIP_DB_UPDATE: true
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3.29.5
with:
sarif_file: 'trivy-health-probe-proxy-linux-results.sarif'
category: health-probe-proxy-linux-image
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # master
with:
scan-type: 'fs'
format: 'github'
output: 'dependency-results.sbom.json'
scan-ref: '.'
github-pat: ${{ secrets.GITHUB_TOKEN }}
env:
TRIVY_SKIP_DB_UPDATE: true