* Chore(deps): Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * remove incorrect comments --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
42 lines
911 B
YAML
42 lines
911 B
YAML
name: "K8s Codegen Check"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- "pkg/apis/**"
|
|
- "pkg/aggregator/apis/**"
|
|
- "pkg/apimachinery/apis/**"
|
|
- "hack/**"
|
|
- "apps/**"
|
|
- "*.sum"
|
|
|
|
jobs:
|
|
check:
|
|
name: K8s Codegen Check
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Set go version
|
|
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
|
|
with:
|
|
go-version-file: go.mod
|
|
|
|
- name: Update k8s codegen
|
|
run: ./hack/update-codegen.sh
|
|
|
|
- name: Check for k8s codegen changes
|
|
run: |
|
|
if ! git diff --exit-code --quiet; then
|
|
echo "Changes detected:"
|
|
git diff
|
|
echo "Please run './hack/update-codegen.sh' and commit the changes."
|
|
exit 1
|
|
fi
|