This action enables you to install Chainsaw.
For a quick start guide on the usage of Chainsaw, please refer to https://kyverno.github.io/chainsaw.
This action currently supports GitHub-provided Linux, macOS and Windows runners (self-hosted runners may not work).
Add the following entry to your Github workflow YAML file:
uses: kyverno/[email protected]
with:
release: v0.1.0 # optionalExample using a pinned version:
jobs:
example:
runs-on: ubuntu-latest
permissions: {}
name: Install Chainsaw
steps:
- name: Install Chainsaw
uses: kyverno/[email protected]
with:
release: v0.0.9
- name: Check install
run: chainsaw versionExample using the default version:
jobs:
example:
runs-on: ubuntu-latest
permissions: {}
name: Install Chainsaw
steps:
- name: Install Chainsaw
uses: kyverno/[email protected]
- name: Check install
run: chainsaw versionExample using cosign verification:
jobs:
example:
runs-on: ubuntu-latest
permissions: {}
name: Install Chainsaw
steps:
- name: Install Cosign
uses: sigstore/[email protected]
- name: Install Chainsaw
uses: kyverno/[email protected]
with:
verify: true
- name: Check install
run: chainsaw versionIf you want to install Chainsaw from its main version by using go install under the hood, you can set release as main.
Once you did that, Chainsaw will be installed via go install which means that please ensure that go is installed.
Example of installing Chainsaw via go install:
jobs:
example:
runs-on: ubuntu-latest
permissions: {}
name: Install Chainsaw via go install
steps:
- name: Install go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install Chainsaw
uses: kyverno/[email protected]
with:
release: main
- name: Check install
run: chainsaw versionThe following optional inputs:
| Input | Description |
|---|---|
release |
chainsaw version to use instead of the default. |
install-dir |
directory to place the chainsaw binary into instead of the default ($HOME/.chainsaw). |
use-sudo |
set to true if install-dir location requires sudo privs. Defaults to false. |
verify |
set to true to enable cosign verification of the downloaded archive. |
Should you discover any security issues, please refer to Kyverno's security process