From 311e27ebe77309a8c0405509aa4b534e17996404 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 24 May 2024 14:22:13 -0400 Subject: [PATCH] Update all GitHub Actions to newer versions * actions/checkout: v2 -> v4 * bazelbuild/setup-bazelisk: v1 -> v3 * actions/cache: v2 -> v4 --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e0cfbc2..93794ff 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,13 +30,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Bazelisk - uses: bazelbuild/setup-bazelisk@v1 + uses: bazelbuild/setup-bazelisk@v3 - name: Setup cache for Bazel - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: "~/.cache/bazel" key: bazel