chore(deps): bump step-security/harden-runner from 2.16.0 to 2.16.1 #504
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: Pruner kind E2E Tests | |
| 'on': | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| workflow_call: {} | |
| 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/ | |
| k8s-version: | |
| - v1.28.x | |
| - v1.32.x | |
| uses: ./.github/workflows/reusable-e2e.yaml | |
| with: | |
| k8s-version: ${{ matrix.k8s-version }} | |
| pipelines-release: v1.6.0 | |
| # This job is for testing the latest LTS version of Tekton Pipelines | |
| 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 | |
| - v1.9.0 | |
| - v1.7.0 | |
| uses: ./.github/workflows/reusable-e2e.yaml | |
| with: | |
| k8s-version: v1.29.x | |
| pipelines-release: ${{ matrix.pipelines-release }} |