From f750316196a0b4d5c9729b57e7c8d4c651669cdd Mon Sep 17 00:00:00 2001 From: Konboi Date: Mon, 26 May 2025 12:25:51 +0900 Subject: [PATCH 1/2] ubuntu latest (v24) doesn't support python 3.7 --- .github/workflows/e2e.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 1895e0492..16374dc3c 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -13,10 +13,9 @@ env: # As a workaround, we configure the old version. USE_BAZEL_VERSION: "7.x" - jobs: tests: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: python-version: [3.7, 3.8, 3.9, "3.10"] From 9b308e41a385f15650f71061c4c59dfbef99a5bc Mon Sep 17 00:00:00 2001 From: Konboi Date: Mon, 26 May 2025 12:29:24 +0900 Subject: [PATCH 2/2] need to use go 1.23 to install bazelisk --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 16374dc3c..aa43036fa 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -32,7 +32,7 @@ jobs: distribution: 'temurin' - uses: actions/setup-go@v5 with: - go-version: 1.22 + go-version: 1.24 - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }}