Skip to content

Commit 0ee75d0

Browse files
authored
fix(release) align test inputs with regular E2E (#3287)
Use full versions for E2E release check. Move 1.25 to previous Kubernetes.
1 parent 37c9504 commit 0ee75d0

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/release.yaml

+8-7
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ jobs:
205205
strategy:
206206
matrix:
207207
kubernetes-version:
208-
- 'v1.25.3'
209208
- 'v1.26.0'
210209
steps:
211210
- name: setup golang
@@ -231,12 +230,14 @@ jobs:
231230
runs-on: ubuntu-latest
232231
needs: build-push-images
233232
strategy:
233+
fail-fast: true
234234
matrix:
235-
minor:
236-
- '21'
237-
- '22'
238-
- '23'
239-
- '24'
235+
kubernetes-version:
236+
- 'v1.21.12'
237+
- 'v1.22.9'
238+
- 'v1.23.6'
239+
- 'v1.24.2'
240+
- 'v1.25.3'
240241
steps:
241242
- name: setup golang
242243
uses: actions/setup-go@v3
@@ -267,7 +268,7 @@ jobs:
267268
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
268269
GOOGLE_PROJECT: ${{ secrets.GOOGLE_PROJECT }}
269270
GOOGLE_LOCATION: ${{ secrets.GOOGLE_LOCATION }}
270-
KONG_CLUSTER_VERSION: v1.${{ matrix.minor }}
271+
KONG_CLUSTER_VERSION: ${{ matrix.kubernetes-version }}
271272
KONG_LICENSE_DATA: ${{ steps.license.outputs.license }}
272273

273274
publish-release:

0 commit comments

Comments
 (0)