zendesk / setup-jsonnet

MIT License
6 stars 5 forks source link

setup-jsonnet

Latest Release Examples

A GitHub action to install a specific version of Go Jsonnet. This action will add jsonnet, jsonnetfmt, jsonnet-deps and jsonnet-lint to the PATH, making them available for subsequent actions.

Inputs

Output

This Action has no outputs.

Usage

Install latest release of Jsonnet

steps:
  - id: setup-jsonnet
    uses: zendesk/setup-jsonnet@v1

Install specific release of Jsonnet

steps:
  - id: setup-jsonnet
    uses: zendesk/setup-jsonnet@v1
    with:
      version: v0.15.0

Providing a GitHub token to avoid API rate limiting

steps:
  - id: setup-jsonnet
    uses: zendesk/setup-jsonnet@v1
    with:
      github_token: ${{ github.token }}