From 3b94efa8debcf8a49edf0212159a7f192b80dd41 Mon Sep 17 00:00:00 2001 From: cskh Date: Wed, 3 Jan 2024 11:29:05 -0500 Subject: [PATCH] Fix upgrade test envoy version (#20075) * ci: fix envoy version in upgrade test --- .github/workflows/nightly-test-integrations.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nightly-test-integrations.yml b/.github/workflows/nightly-test-integrations.yml index 32e09f2e34..2cc05dc354 100644 --- a/.github/workflows/nightly-test-integrations.yml +++ b/.github/workflows/nightly-test-integrations.yml @@ -196,7 +196,10 @@ jobs: consul-version: [ "1.16", "1.17"] env: CONSUL_LATEST_VERSION: ${{ matrix.consul-version }} - ENVOY_VERSION: "1.28.0" + # ENVOY_VERSION should be the latest version upported by all + # consul versions in the matrix.consul-version, since we are testing upgrade from + # an older consul version, e.g., 1.26.6 is supported by both 1.16 and 1.17. + ENVOY_VERSION: "1.26.6" steps: - name: Checkout code uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3