DO NOT MERGE: An attempt at restarting the controller manager without restarting the whole operator binary #46
Workflow file for this run
This file contains hidden or 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: govulncheck | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
govulncheck: | |
name: govulncheck | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Generate Assets | |
run: | | |
make generate-assets | |
- name: Run govulncheck | |
uses: golang/govulncheck-action@v1 | |
with: | |
go-version-input: ${{ steps.install-go.outputs.go-version }} | |
go-package: ./... | |
repo-checkout: false |