chore(deps): bump the k8s-go-deps group across 1 directory with 10 updates #11681
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: presubmit | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| presubmit: | |
| permissions: | |
| issues: write | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| k8sVersion: ["1.29.x", "1.30.x", "1.31.x", "1.32.x", "1.33.x", "1.34.x", "1.35.x"] | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: ./.github/actions/install-deps | |
| with: | |
| k8sVersion: ${{ matrix.k8sVersion }} | |
| - name: Enable the actionlint matcher | |
| run: echo "::add-matcher::.github/actionlint-matcher.json" | |
| - run: K8S_VERSION=${{ matrix.k8sVersion }} make presubmit | |
| - name: Send coverage | |
| # should only send converage once https://docs.coveralls.io/parallel-builds | |
| if: matrix.k8sVersion == '1.35.x' | |
| env: | |
| COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: go tool -modfile=go.tools.mod goveralls -coverprofile=coverage.out -service=github |