Bump github.com/operator-framework/operator-lib from 0.13.0 to 0.14.0 #2931
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: "Operator-SDK Scorecard" | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
permissions: | |
contents: read | |
jobs: | |
operator-sdk-scorecard: | |
name: "Operator-SDK Scorecard" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out code" | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: "Install KIND" | |
run: ./hack/install/install-kind.sh | |
- name: "Install KUTTL" | |
run: ./hack/install/install-kuttl.sh | |
- name: "Run Operator-SDK scorecard test" | |
env: | |
DOCKER_BUILD_OPTIONS: "--cache-from type=local,src=/tmp/.buildx-cache --cache-to type=local,dest=/tmp/.buildx-cache-new,mode=max --load" | |
run: make scorecard-tests-local |