instance_update.go refactor to reduce complexity
#9186
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: Verify KEB | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| paths-ignore: | |
| - "**.md" | |
| - "sec-scanners-config.yaml" | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| checks: write | |
| jobs: | |
| run-go-tests: | |
| uses: "./.github/workflows/run-unit-tests-reusable.yaml" | |
| run-go-linter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up go environment | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Go linter | |
| env: | |
| GOLINT_TIMEOUT: ${{ vars.GOLINT_TIMEOUT }} | |
| run: make go-lint | |
| run-go-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up go environment | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Run go checks | |
| run: make checks | |
| verify-python-md-sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.9' | |
| cache: 'pip' | |
| - name: Run env docs generator | |
| run: make generate-env-docs | |
| - name: Check for changes in docs/contributor/02-30-keb-configuration.md | |
| run: | | |
| if [[ $(git status --porcelain docs/contributor/02-30-keb-configuration.md) ]]; then | |
| echo 'docs/contributor/02-30-keb-configuration.md is out of date. Please run the generator (make generate-env-docs) and commit the changes.' | |
| git diff --color=always docs/contributor/02-30-keb-configuration.md | |
| exit 1 | |
| fi | |
| - name: Check for changes in docs/contributor/06-30-subaccount-cleanup-cronjob.md | |
| run: | | |
| if [[ $(git status --porcelain docs/contributor/06-30-subaccount-cleanup-cronjob.md) ]]; then | |
| echo 'docs/contributor/06-30-subaccount-cleanup-cronjob.md is out of date. Please run the generator (make generate-env-docs) and commit the changes.' | |
| git diff --color=always docs/contributor/06-30-subaccount-cleanup-cronjob.md | |
| exit 1 | |
| fi | |
| - name: Check for changes in docs/contributor/06-40-trial-free-cleanup-cronjobs.md | |
| run: | | |
| if [[ $(git status --porcelain docs/contributor/06-40-trial-free-cleanup-cronjobs.md) ]]; then | |
| echo 'docs/contributor/06-40-trial-free-cleanup-cronjobs.md is out of date. Please run the generator (make generate-env-docs) and commit the changes.' | |
| git diff --color=always docs/contributor/06-40-trial-free-cleanup-cronjobs.md | |
| exit 1 | |
| fi | |
| - name: Check for changes in docs/contributor/06-50-deprovision-retrigger-cronjob.md | |
| run: | | |
| if [[ $(git status --porcelain docs/contributor/06-50-deprovision-retrigger-cronjob.md) ]]; then | |
| echo 'docs/contributor/06-50-deprovision-retrigger-cronjob.md is out of date. Please run the generator (make generate-env-docs) and commit the changes.' | |
| git diff --color=always docs/contributor/06-50-deprovision-retrigger-cronjob.md | |
| exit 1 | |
| fi | |
| - name: Check for changes in docs/contributor/06-70-service-binding-cleanup-cronjob.md | |
| run: | | |
| if [[ $(git status --porcelain docs/contributor/06-70-service-binding-cleanup-cronjob.md) ]]; then | |
| echo 'docs/contributor/06-70-service-binding-cleanup-cronjob.md is out of date. Please run the generator (make generate-env-docs) and commit the changes.' | |
| git diff --color=always docs/contributor/06-70-service-binding-cleanup-cronjob.md | |
| exit 1 | |
| fi | |
| - name: Check for changes in docs/contributor/07-10-runtime-reconciler.md | |
| run: | | |
| if [[ $(git status --porcelain docs/contributor/07-10-runtime-reconciler.md) ]]; then | |
| echo 'docs/contributor/07-10-runtime-reconciler.md is out of date. Please run the generator (make generate-env-docs) and commit the changes.' | |
| git diff --color=always docs/contributor/07-10-runtime-reconciler.md | |
| exit 1 | |
| fi | |
| - name: Check for changes in docs/contributor/07-20-subaccount-sync.md | |
| run: | | |
| if [[ $(git status --porcelain docs/contributor/07-20-subaccount-sync.md) ]]; then | |
| echo 'docs/contributor/07-20-subaccount-sync.md is out of date. Please run the generator (make generate-env-docs) and commit the changes.' | |
| git diff --color=always docs/contributor/07-20-subaccount-sync.md | |
| exit 1 | |
| fi | |
| - name: Check for changes in docs/contributor/07-30-schema-migrator.md | |
| run: | | |
| if [[ $(git status --porcelain docs/contributor/07-30-schema-migrator.md) ]]; then | |
| echo 'docs/contributor/07-30-schema-migrator.md is out of date. Please run the generator (make generate-env-docs) and commit the changes.' | |
| git diff --color=always docs/contributor/07-30-schema-migrator.md | |
| exit 1 | |
| fi | |
| - name: Check for changes in docs/contributor/02-70-chart-config.md | |
| run: | | |
| if [[ $(git status --porcelain docs/contributor/02-70-chart-config.md) ]]; then | |
| echo 'docs/contributor/02-70-chart-config.md is out of date. Please run the generator (make generate-env-docs) and commit the changes.' | |
| git diff --color=always docs/contributor/02-70-chart-config.md | |
| exit 1 | |
| fi |