https://github.com/vsco/bazelisk-action
Github Action for Bazelisk - managed by Terraform
https://github.com/vsco/bazelisk-action
Last synced: 9 months ago
JSON representation
Github Action for Bazelisk - managed by Terraform
- Host: GitHub
- URL: https://github.com/vsco/bazelisk-action
- Owner: vsco
- License: mit
- Created: 2020-06-04T20:50:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T03:20:01.000Z (almost 3 years ago)
- Last Synced: 2025-07-11T02:50:36.146Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 61.5 KB
- Stars: 2
- Watchers: 3
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bazelisk-action
Installs bazelisk as a Github Action.
## Usage
```
jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Bazelisk
uses: vsco/bazelisk-action@v1.0.0
with:
# [required]
# Version of Bazelisk we would like to install, defaults to 1.5.0
version: '1.5.0'
# [required]
# Install path for Bazelisk binaries, defaults to ./.local/bin
bazel-install-path: './.local/bin'
# [required]
# The OS of the system that wishes to install Bazelisk. Can be 'darwin' or 'linux'
os: 'linux'
```
## License
The Javascript Github Action and any documentation is released under the MIT License.
Check LICENSE.md for more info.