Bump the kubernetes group across 1 directory with 7 updates #6781
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: test on k8s | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
kube-version: | |
- "1.23" | |
- "1.30" | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
id: setup-go | |
with: | |
go-version: "~1.21.1" | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Cache tools | |
uses: actions/cache@v4 | |
with: | |
path: bin | |
key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{ steps.setup-go.outputs.go-version }} | |
- name: Install tools | |
run: make install-tools | |
- name: "start kind" | |
env: | |
KUBE_VERSION: ${{ matrix.kube-version }} | |
run: make start-kind | |
- name: "wait until cluster is ready" | |
run: kubectl wait --timeout=5m --for=condition=available deployment/coredns -n kube-system | |
- name: "run scorecard test" | |
run: make scorecard-tests | |
scorecard-tests-check: | |
runs-on: ubuntu-22.04 | |
if: always() | |
needs: [scorecard-tests] | |
steps: | |
- name: Print result | |
run: echo ${{ needs.scorecard-tests.result }} | |
- name: Interpret result | |
run: | | |
if [[ success == ${{ needs.scorecard-tests.result }} ]] | |
then | |
echo "All matrix jobs passed!" | |
else | |
echo "One or more matrix jobs failed." | |
false | |
fi |