From 4159072692f3a4ffdf2c12afb3ae521a7257a656 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Fri, 10 Jun 2022 13:59:58 -0700 Subject: [PATCH] chore(deps): update actions/checkout action to v3 (#13) * chore(deps): update actions/checkout action to v3 * chore: update actions/cache as well --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 274537a..cc3a2fd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,7 +26,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Cache build and external artifacts so that the next ci build is incremental. # Because github action caches cannot be updated after a build, we need to # store the contents of each build in a unique cache key, then fall back to loading @@ -39,7 +39,7 @@ jobs: # previously built artifacts to minimize build time. The more precise you are with # hashFiles sources the less work bazel will have to do. - name: Mount bazel caches - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | "~/.cache/bazel" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94a42cf..0acd7ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,9 +13,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Mount bazel caches - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | "~/.cache/bazel"