Bump k8s.io/kubernetes from 1.32.1 to 1.32.7 #404
Workflow file for this run
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: Test CNI | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| paths-ignore: | |
| - '**.md' | |
| - 'CODEOWNERS' | |
| - 'LICENSE' | |
| - 'docs/**' | |
| jobs: | |
| integration-cni-tests: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| runs-on: runs-on,runner=4cpu-linux-x64,run-id=${{ github.run_id }} | |
| timeout-minutes: 60 | |
| strategy: | |
| matrix: | |
| cni: [flannel, calico, weave] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Retrieve Stage Registry Credentials from Vault | |
| uses: rancher-eio/read-vault-secrets@main | |
| with: | |
| secrets: | | |
| secret/data/github/repo/${{ github.repository }}/stage-registry/rancher/rke-extended-life/credentials endpoint | STAGE_REGISTRY_ENDPOINT ; | |
| secret/data/github/repo/${{ github.repository }}/stage-registry/rancher/rke-extended-life/credentials username | STAGE_REGISTRY_USERNAME ; | |
| secret/data/github/repo/${{ github.repository }}/stage-registry/rancher/rke-extended-life/credentials password | STAGE_REGISTRY_PASSWORD | |
| - name: Run ${{ matrix.cni }} check | |
| run: | | |
| ./scripts/build | |
| ./scripts/integration ${{ matrix.cni }} |