Skip to content

Commit

Permalink
chore(ci): migrate bazelbuild/setup-bazelisk to bazel-contrib/setup-b…
Browse files Browse the repository at this point in the history
…azel (#13622)

According to the bazelbuild/setup-bazelisk README, the action is superseded by the bazel-contrib/setup-bazel. Please check if we need to migrate to the new action. One of the possible motivation of this migration is that node.js 16 is deprecated soon from github runners.

KAG-5221
  • Loading branch information
Water-Melon authored Sep 11, 2024
1 parent 227396f commit c498f41
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,15 @@ jobs:
grep -v '^#' .requirements >> $GITHUB_ENV
- name: Setup Bazel
uses: bazelbuild/setup-bazelisk@95c9bf48d0c570bb3e28e57108f3450cd67c1a44 # v2.0.0
uses: bazel-contrib/setup-bazel@0.8.5
with:
bazelisk-version: "1.20.0"
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Store build cache per workflow.
disk-cache: ${{ github.workflow }}
# Share repository cache between workflows.
repository-cache: true

- name: Install Deb Dependencies
if: matrix.package == 'deb' && steps.cache-deps.outputs.cache-hit != 'true'
Expand Down

1 comment on commit c498f41

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong:c498f41dc03f7a04aaf3df24c59e01ff5e39c339
Artifacts available https://github.com/Kong/kong/actions/runs/10807395245

Please sign in to comment.