Skip to content

Bump the golang group across 1 directory with 22 updates #4202

Bump the golang group across 1 directory with 22 updates

Bump the golang group across 1 directory with 22 updates #4202

Workflow file for this run

name: Workflow
# yamllint sees the below line as a true or false value instead of an 'on' trigger
on: # yamllint disable-line rule:truthy
push:
branches: [main]
pull_request:
branches: ["**"]
jobs:
# Removing forbidden checks for now. Todo - maintain consistency across platforms
# sanitize:
# name: Check for forbidden words
# runs-on: ubuntu-latest
# steps:
# - name: Checkout the code
# uses: actions/checkout@v4
# - name: Run the forbidden words scan
# uses: dell/common-github-actions/code-sanitizer@main
# with:
# args: /github/workspace
image_security_scan:
name: Image Scanner
runs-on: ubuntu-latest
env:
BASE_IMG: ubuntu:latest
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.23"
id: go
- name: Checkout the code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build Docker Images
run: |
make -o gen-semver
DEFAULT_IMG=csm-operator:latest make docker-build
- name: Scan controller Image
uses: aquasecurity/[email protected]
with:
image-ref: csm-operator:latest
severity: 'HIGH'
ignore-unfixed: true
exit-code: '1'
trivyignores: '.github/workflows/.trivyignore'