Skip to content

Commit

Permalink
update github workflows to use Node.js 20 (#43)
Browse files Browse the repository at this point in the history
Change-Id: I09161e2571853047ea1b80d029b0c8b5d13cbcda
  • Loading branch information
oliverlee authored Jun 5, 2024
1 parent 0eec824 commit ab10382
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/ci-env-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
echo "common --repository_cache=$HOME/bazel_cache/repository_cache" >> ~/.bazelrc
- name: restore bazel install base, output base, repository cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
~/bazel_cache/install_base
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
env:
PROFILE: profile-${{ matrix.toolchain }}-${{ matrix.feature }}.gz
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/ci-env-setup
with:
buildbuddy-api-key: ${{ secrets.BUILDBUDDY_API_KEY }}
Expand All @@ -40,7 +40,7 @@ jobs:
env:
PROFILE: profile-coverage.gz
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/ci-env-setup
with:
buildbuddy-api-key: ${{ secrets.BUILDBUDDY_API_KEY }}
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
env:
PROFILE: profile-${{ matrix.flag }}.gz
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/ci-env-setup
with:
buildbuddy-api-key: ${{ secrets.BUILDBUDDY_API_KEY }}
Expand All @@ -89,7 +89,7 @@ jobs:
buildifier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/ci-env-setup
with:
buildbuddy-api-key: ${{ secrets.BUILDBUDDY_API_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/repo-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
env:
PROFILE: profile-repo-cache.gz
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/ci-env-setup
with:
buildbuddy-api-key: ${{ secrets.BUILDBUDDY_API_KEY }}
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
done
echo "Done"
- name: save bazel install base, output base, repository cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: |
~/bazel_cache/install_base
Expand Down

0 comments on commit ab10382

Please sign in to comment.