We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a7f1a4 commit 436ac60Copy full SHA for 436ac60
.github/workflows/gateway.yml
@@ -7,8 +7,9 @@ on:
7
8
env:
9
GO_VERSION: "1.24"
10
- K8S_VERSION: "v1.32.0"
11
- KIND_VERSION: "v0.27.0"
+ GATEWAY_VERSION: "v1.34.0"
+ K8S_VERSION: "v1.34.0"
12
+ KIND_VERSION: "v0.30.0"
13
KIND_CLUSTER_NAME: "kind-cloud"
14
15
jobs:
@@ -37,7 +38,7 @@ jobs:
37
38
run: |
39
TMP_DIR=$(mktemp -d)
40
# Test binaries
- git clone --depth 1 https://github.com/kubernetes-sigs/gateway-api.git ${TMP_DIR}
41
+ git clone --branch ${{ env.GATEWAY_VERSION }} --depth 1 https://github.com/kubernetes-sigs/gateway-api.git ${TMP_DIR}
42
cd ${TMP_DIR}
43
go test ./conformance/ -c
44
cd -
0 commit comments