Bump github/codeql-action from 3.30.7 to 4.31.7 #2481
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: Chains kind E2E Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release-* | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: ./ | |
| jobs: | |
| k8s: | |
| strategy: | |
| fail-fast: false # Keep running if one leg fails. | |
| matrix: | |
| # Keep in sync with the list of supported releases: https://kubernetes.io/releases/ | |
| # Add latest k8s-version once it is added in https://github.com/sigstore/scaffolding/releases | |
| k8s-version: | |
| - v1.31.x | |
| - v1.32.x | |
| - v1.33.x | |
| uses: ./.github/workflows/reusable-e2e.yaml | |
| with: | |
| k8s-version: ${{ matrix.k8s-version }} | |
| pipelines-release: v1.2.0 # Latest version | |
| pipelines-lts: | |
| strategy: | |
| fail-fast: false # Keep running if one leg fails. | |
| matrix: | |
| pipelines-release: | |
| # This should follow the list of versions from https://github.com/tektoncd/pipeline/blob/main/releases.md#release | |
| - v0.62.9 # LTS | |
| - v0.65.7 # LTS | |
| - v0.68.1 # LTS | |
| - v1.0.0 # LTS | |
| uses: ./.github/workflows/reusable-e2e.yaml | |
| with: | |
| k8s-version: v1.30.x # intersection of the latest version and scaffolding | |
| pipelines-release: ${{ matrix.pipelines-release }} |