fix(deps): update github.com/openshift/api digest to 4c68b61 #4932
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 bundle | |
on: | |
push: | |
paths: | |
- 'operator/**' | |
branches: [ main ] | |
pull_request: | |
paths: | |
- 'operator/**' | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go: ['1.21'] | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go }} | |
id: go | |
- uses: actions/checkout@v4 | |
- name: Install make | |
run: sudo apt-get install make | |
- name: make bundle | |
run: | | |
make bundle-all && git diff --exit-code -I'^ createdAt: ' | |
working-directory: ./operator |