chore(deps): update update kubernetes dependencies to v0.23.3 (release/v0.9) #3798
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: CI | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: | |
| - master | |
| - release/* | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| env: | |
| GOLANG_CI_LINT_VERSION: v2.7.1 | |
| steps: | |
| - name : Checkout repository | |
| # https://github.com/actions/checkout/releases/tag/v4.1.1 | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install Go | |
| # https://github.com/actions/setup-go/releases/tag/v5.0.0 | |
| uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Install golangci-lint | |
| uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0 | |
| with: | |
| version: ${{ env.GOLANG_CI_LINT_VERSION }} | |
| install-only: true | |
| - name: Install env-test | |
| run: go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest | |
| - name: Build | |
| run: make build-bin | |
| - name: Test | |
| run: make test | |
| - name: Validate | |
| run: make validate |