From 8a5f7776dba4bc126614c04a52879bccdc11c070 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Mon, 16 Dec 2024 15:59:10 -0800 Subject: [PATCH] .github/workflows: Stop testing Bazel 6 Bazel 8 is now out. We support the two most recent releases. FWIW, I have compiled with Bazel 8 and didn't experience any problems. --- .github/workflows/testing.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index d68d85eb0c..8c934f24f3 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -79,14 +79,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - include: - # Test with and without bzlmod. Bazel 6 doesn't support bzlmod, so use Bazel 7 instead - - bazel: 6.0.0 - bzlmod: false - - bazel: 7.0.0 - bzlmod: true + bzlmod: [true, false] env: - USE_BAZEL_VERSION: ${{ matrix.bazel }} + USE_BAZEL_VERSION: 7.0.0 steps: - uses: actions/checkout@v4