Expose pod security context per component #2296
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Scorecard tests" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
scorecard-tests: | |
name: Scorecard test ${{ matrix.name }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
include: | |
- name: min | |
kube-version: "1.25" | |
- name: max | |
kube-version: "1.30" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Install chainsaw | |
run: | | |
set -e | |
make chainsaw | |
- name: "start kind" | |
env: | |
KUBE_VERSION: ${{ matrix.kube-version }} | |
run: | | |
make start-kind | |
- name: "run community scorecard tests" | |
run: for i in {1..5}; do make scorecard-tests && break || sleep 10; done | |
env: | |
BUNDLE_VARIANT: community | |
- name: "run OpenShift scorecard tests" | |
run: for i in {1..5}; do make scorecard-tests && break || sleep 10; done | |
env: | |
BUNDLE_VARIANT: openshift |