Skip to content

🌱 Bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 #1014

🌱 Bump golang.org/x/oauth2 from 0.22.0 to 0.23.0

🌱 Bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 #1014

Workflow file for this run

name: Scan
on:
pull_request:
push:
branches:
- master
tags:
- "v*"
jobs:
scan:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build binary
run: make build
- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]
- name: Build image
uses: docker/[email protected]
with:
context: .
tags: ghcr.io/rancher/gke-operator:${{ github.sha }}
load: true
push: false
file: package/Dockerfile
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: "ghcr.io/rancher/gke-operator:${{ github.sha }}"
format: "table"
exit-code: "1"
ignore-unfixed: true
severity: "CRITICAL,HIGH"