Skip to content

Bump k8s.io/client-go from 0.26.11 to 0.26.12 #139

Bump k8s.io/client-go from 0.26.11 to 0.26.12

Bump k8s.io/client-go from 0.26.11 to 0.26.12 #139

Workflow file for this run

name: Test
on:
pull_request:
env:
KUBECONFIG: "/home/gh-action/.kcli/clusters/ocp-test/auth/kubeconfig"
jobs:
scorecard:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Build bundle
run: make bundle
- name: Run scorecard tests
run: operator-sdk scorecard ./bundle -o xunit > scorecard-tests.xml
- uses: actions/upload-artifact@v4 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
path: scorecard-tests.xml