Skip to content

build(deps): Bump docker/setup-buildx-action from 2.8.0 to 2.9.0 #513

build(deps): Bump docker/setup-buildx-action from 2.8.0 to 2.9.0

build(deps): Bump docker/setup-buildx-action from 2.8.0 to 2.9.0 #513

Workflow file for this run

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
runs-on: ubuntu-22.04
strategy:
matrix:
kube-version:
- "1.21"
- "1.27"
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: "install kuttl"
run: ./hack/install/install-kuttl.sh
- name: "start kind"
env:
KUBE_VERSION: ${{ matrix.kube-version }}
run: kind create cluster --config kind-$KUBE_VERSION.yaml --wait 5m
- name: "run community scorecard tests"
run: make scorecard-tests
env:
BUNDLE_VARIANT: community
- name: "run OpenShift scorecard tests"
run: make scorecard-tests
env:
BUNDLE_VARIANT: openshift