From 4e824f95e6d494f7e67f500de1c1c28c76241b61 Mon Sep 17 00:00:00 2001 From: Philipp Wollermann Date: Sun, 27 Sep 2020 11:27:57 +0200 Subject: [PATCH] Pass GITHUB_TOKEN to Bazelisk Workaround for https://github.com/bazelbuild/bazelisk/issues/170 --- .github/workflows/ci-bazel.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-bazel.yml b/.github/workflows/ci-bazel.yml index cf4c77ac7..556584e77 100644 --- a/.github/workflows/ci-bazel.yml +++ b/.github/workflows/ci-bazel.yml @@ -10,6 +10,8 @@ jobs: matrix: os: [macos-latest, ubuntu-latest, windows-latest] steps: - - uses: actions/checkout@v2 - - run: .github/bazel.sh - shell: bash + - uses: actions/checkout@v2 + - run: .github/bazel.sh + shell: bash + env: + BAZELISK_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}