Skip to content

fix(deps): update github.com/openshift/api digest to 02e2c3d #12276

fix(deps): update github.com/openshift/api digest to 02e2c3d

fix(deps): update github.com/openshift/api digest to 02e2c3d #12276

Workflow file for this run

name: Validate PR
on:
pull_request:
jobs:
static_checks:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Golang
uses: actions/setup-go@v6
with:
go-version: '1.25'
- run: go version
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
args: --timeout=10m
version: v2.8.0
- name: Run Gosec Security Scanner
uses: securego/gosec@v2.23.0
with:
# we let the report trigger content trigger a failure using the GitHub Security features.
args: "-no-fail -fmt sarif -out results.sarif ./..."
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v4
with:
# Path to SARIF file relative to the root of the repository
sarif_file: results.sarif
unit_tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Golang
uses: actions/setup-go@v6
with:
go-version: '1.25'
- name: Run unit tests
run: make test/unit