chore(deps): update o-cloud-manager-4-22 to 53cbde3 #1264
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: Kustomize Validation | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| kustomize-validation: | |
| name: Validate Kustomization Files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: actionlint | |
| uses: raven-actions/actionlint@v2 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Install Kustomize | |
| run: | | |
| # Use the Makefile to install kustomize with the version specified in KUSTOMIZE_VERSION | |
| make kustomize | |
| # Add the bin directory to PATH for subsequent steps | |
| echo "${PWD}"/bin >> "${GITHUB_PATH}" | |
| # Verify installation | |
| "${PWD}"/bin/kustomize version | |
| - name: Validate Kustomization Files | |
| run: make test-kustomize |