(chore): bump k8s and kubebuilder #4957
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: sanity | |
on: | |
pull_request: {} | |
jobs: | |
check_docs_only: | |
name: check_docs_only | |
runs-on: ubuntu-22.04 | |
outputs: | |
skip: ${{ steps.check_docs_only.outputs.skip }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- id: check_docs_only | |
# Since PR's are squashed prior to merging to the branch checked out (default branch), | |
# HEAD^ will resolve to the previous point in history. | |
run: | | |
REF="HEAD^" | |
[[ -z "${{ github.base_ref }}" ]] || REF=$(git show-ref ${{ github.base_ref }} | head -1 | cut -d' ' -f2) | |
echo "skip=$(.github/workflows/check-docs-only.sh $REF)" >> $GITHUB_OUTPUT | |
sanity: | |
name: sanity | |
runs-on: ubuntu-22.04 | |
needs: check_docs_only | |
if: needs.check_docs_only.outputs.skip != 'true' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: "go.mod" | |
id: go | |
- run: sudo rm -rf /usr/local/bin/kustomize | |
- run: make test-sanity | |
docs: | |
name: docs | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- run: make test-docs | |
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.13 | |
with: | |
max-depth: 1 | |
config-file: '.github/workflows/markdown-link-check-config.json' |