From 3d92f1645f6ba9ecdc98e97a49b88dd8009bea7f Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 3 Sep 2024 15:12:04 +0200 Subject: [PATCH] Fix Go version to 1.23 when running Gateway API conformance tests --- .github/workflows/test-conformance.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-conformance.yaml b/.github/workflows/test-conformance.yaml index e6147d2c6..606242b09 100644 --- a/.github/workflows/test-conformance.yaml +++ b/.github/workflows/test-conformance.yaml @@ -5,11 +5,13 @@ on: branches: - '*' paths: + - '.github/workflows/test-conformance.yaml' - 'pkg/provider/kubernetes/gateway/**' + - 'integration/fixtures/k8s-conformance/**' - 'integration/k8s_conformance_test.go' env: - GO_VERSION: '1.22' + GO_VERSION: '1.23' CGO_ENABLED: 0 jobs: