Skip to content

Commit b5b2384

Browse files
authored
02/28 CI Updates: Upgrade helm/kind-action to avoid possible future CI failures (#10671)
1 parent aa14ac2 commit b5b2384

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/composite-actions/kube-gateway-api-conformance-tests/action.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ runs:
66
- name: Prep Go Runner
77
uses: ./.github/workflows/composite-actions/prep-go-runner
88
- name: Install kind
9-
uses: helm/kind-action@v1.10.0
9+
uses: helm/kind-action@v1.12.0
1010
with:
1111
install_only: true
1212
version: ${{ matrix.kube-version.kind }}
13+
kubectl_version: ${{ matrix.kube-version.kubectl }}
1314
node_image: kindest/node:${{ matrix.kube-version.node }}
1415
- uses: azure/setup-kubectl@v4
1516
id: kubectl

.github/workflows/composite-actions/regression-tests/action.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ runs:
88
- name: Prep Go Runner
99
uses: ./.github/workflows/composite-actions/prep-go-runner
1010
- name: Install kind
11-
uses: helm/kind-action@v1.10.0
11+
uses: helm/kind-action@v1.12.0
1212
with:
1313
install_only: true
1414
version: ${{ matrix.kube-version.kind }}
15+
kubectl_version: ${{ matrix.kube-version.kubectl }}
1516
node_image: kindest/node:${{ matrix.kube-version.node }}
1617
- uses: azure/setup-kubectl@v4
1718
id: kubectl

.github/workflows/composite-actions/setup-kind-cluster/action.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ runs:
3030
using: "composite"
3131
steps:
3232
- name: Install kind
33-
uses: helm/kind-action@v1.10.0
33+
uses: helm/kind-action@v1.12.0
3434
with:
3535
install_only: true
3636
version: ${{ inputs.kind-version }}
37+
kubectl_version: ${{ inputs.kubectl-version }}
3738
- uses: azure/setup-kubectl@v4
3839
id: kubectl
3940
with:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
changelog:
2+
- type: NON_USER_FACING
3+
description: Upgrade uses of `helm/kind-action` to latest release (`v0.12.0`) to preempt potential future CI failures when setting kubectl versions.

0 commit comments

Comments
 (0)