Skip to content

Fix go.mod and github actions to sync with supported release versions of pipeline and kubernetes #1957

Fix go.mod and github actions to sync with supported release versions of pipeline and kubernetes

Fix go.mod and github actions to sync with supported release versions of pipeline and kubernetes #1957

Workflow file for this run

name: Chains kind E2E Tests
on:
pull_request:
branches:
- main
- release-*
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/
# TODO: add 1.31.x once it is added in https://github.com/sigstore/scaffolding/releases
k8s-version:
- v1.28.x
- v1.29.x
- v1.30.x
uses: ./.github/workflows/reusable-e2e.yaml
with:
k8s-version: ${{ matrix.k8s-version }}
pipelines-release: v0.50.1
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.50.5 # LTS
- v0.53.5 # LTS
- v0.56.3 # LTS
- v0.59.2 # LTS
uses: ./.github/workflows/reusable-e2e.yaml
with:
k8s-version: v1.28.x
pipelines-release: ${{ matrix.pipelines-release }}