File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 1919 attribute : penultimate
2020 - version : 1.29.3
2121 attribute : previous
22- - version : 1.30.0
22+ - version : default
2323 attribute : latest
2424 runs-on : ubuntu-22.04
2525 steps :
3030 - uses : docker/setup-buildx-action@v3.3.0
3131 - uses : tale/kubectl-action@v1.4.0
3232 with :
33- kubectl-version : v1.30.0
33+ kubectl-version : v1.30.1
3434 # Empty kubeconfig file
3535 base64-kube-config : " YXBpVmVyc2lvbjogdjEKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQo="
36- - run : ENVTEST_K8S_VERSION=${{ matrix.k8s.version }} make test-e2e
36+ - run : |
37+ if [ "${{ matrix.k8s.version }}" = "default" ]; then
38+ # For latest version use default from Makefile
39+ make test-e2e
40+ else
41+ ENVTEST_K8S_VERSION=${{ matrix.k8s.version }} make test-e2e
42+ fi
Original file line number Diff line number Diff line change @@ -19,12 +19,18 @@ jobs:
1919 attribute : penultimate
2020 - version : 1.29.3
2121 attribute : previous
22- - version : 1.30.0
22+ - version : default
2323 attribute : latest
2424 runs-on : ubuntu-22.04
2525 steps :
2626 - uses : actions/checkout@v4.1.6
2727 - uses : actions/setup-go@v5.0.1
2828 with :
2929 go-version : 1.22.3
30- - run : ENVTEST_K8S_VERSION=${{ matrix.k8s.version }} make test
30+ - run : |
31+ if [ "${{ matrix.k8s.version }}" = "default" ]; then
32+ # For latest version use default from Makefile
33+ make test
34+ else
35+ ENVTEST_K8S_VERSION=${{ matrix.k8s.version }} make test
36+ fi
Original file line number Diff line number Diff line change 33IMG ?= ghcr.io/aenix-io/etcd-operator:latest
44# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
55# renovate: datasource=github-tags depName=kubernetes/kubernetes
6- ENVTEST_K8S_VERSION ?= v1.30.1
6+ ENVTEST_K8S_VERSION ?= v1.30.0
77ENVTEST_K8S_VERSION_TRIMMED_V = $(subst v,,$(ENVTEST_K8S_VERSION ) )
88
99# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
You can’t perform that action at this time.
0 commit comments