From 1638ce39f8022a397d5f506b7d13f24450803526 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Wed, 2 Aug 2023 10:44:43 -0700 Subject: [PATCH] .github: Use checkout@v3 for Bazel The other jobs were swapped to v3 in 38311e8730. Bazel was added later with the older version. This fixes the warning: ``` The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ ``` --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index a42532185eb..9effca68ae0 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -79,7 +79,7 @@ jobs: USE_BAZEL_VERSION: 5.0.0 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Bazel cache uses: actions/cache@v3