Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v3 (bazelbuild#13)
Browse files Browse the repository at this point in the history
* chore(deps): update actions/checkout action to v3

* chore: update actions/cache as well
  • Loading branch information
alexeagle authored Jun 10, 2022
1 parent 92ddb2d commit 4159072
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 4159072

Please sign in to comment.