From d7fbb5a5e855fc499217c79e8484cfea114fc63a Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Tue, 26 Mar 2024 14:24:21 -0700 Subject: [PATCH] Upgrade Bazel to 6.4.0 Matches https://github.com/buildbarn/bb-storage/pull/200 and needed for re-use of a starlark file from bb-storage at HEAD --- .bazelversion | 1 + .github/workflows/master.yaml | 2 +- .github/workflows/pull-requests.yaml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 .bazelversion diff --git a/.bazelversion b/.bazelversion new file mode 100644 index 00000000..19b860c1 --- /dev/null +++ b/.bazelversion @@ -0,0 +1 @@ +6.4.0 diff --git a/.github/workflows/master.yaml b/.github/workflows/master.yaml index fa79b8d7..2f24fc66 100644 --- a/.github/workflows/master.yaml +++ b/.github/workflows/master.yaml @@ -5,7 +5,7 @@ "steps": [ { "name": "Installing Bazel", - "run": "curl -L https://github.com/bazelbuild/bazel/releases/download/6.0.0/bazel-6.0.0-linux-x86_64 > ~/bazel && chmod +x ~/bazel && echo ~ >> ${GITHUB_PATH}" + "run": "curl -L https://github.com/bazelbuild/bazel/releases/download/6.4.0/bazel-6.4.0-linux-x86_64 > ~/bazel && chmod +x ~/bazel && echo ~ >> ${GITHUB_PATH}" }, { "name": "Check out source code", diff --git a/.github/workflows/pull-requests.yaml b/.github/workflows/pull-requests.yaml index 7c939023..6ff5c80d 100644 --- a/.github/workflows/pull-requests.yaml +++ b/.github/workflows/pull-requests.yaml @@ -5,7 +5,7 @@ "steps": [ { "name": "Installing Bazel", - "run": "curl -L https://github.com/bazelbuild/bazel/releases/download/6.0.0/bazel-6.0.0-linux-x86_64 > ~/bazel && chmod +x ~/bazel && echo ~ >> ${GITHUB_PATH}" + "run": "curl -L https://github.com/bazelbuild/bazel/releases/download/6.4.0/bazel-6.4.0-linux-x86_64 > ~/bazel && chmod +x ~/bazel && echo ~ >> ${GITHUB_PATH}" }, { "name": "Check out source code",