⚠️ This action is deprecated and therefore read-only. Please migrate to setopsco/github-actions/setup instead.
The setopsco/setup-setops
action is a JavaScript action that sets up SetOps CLI in your GitHub Actions workflow by downloading a specific version of SetOps CLI and adding it to your PATH
.
After you've used the action, subsequent steps in the same job can run arbitrary SetOps commands using the GitHub Actions run
syntax. This allows most SetOps commands to work exactly like they do on your local command line.
This action partly reuses code from https://github.com/hashicorp/setup-terraform.
This action can be run on ubuntu-latest
GitHub Actions runners.
The default configuration installs the latest version of SetOps CLI and installs the wrapper script to wrap subsequent calls to the setops
binary.
steps:
- uses: setopsco/setup-setops@v3
A specific version of SetOps CLI can be installed.
steps:
- uses: setopsco/setup-setops@v3
with:
setops_version: 0.1.4
Credentials for SetOps can be configured.
steps:
- uses: setopsco/setup-setops@v3
with:
setops_organization: yourorganization
setops_username: my-ci-user@setops.co
setops_password: ${{ secrets.SETOPS_PASSWORD }}
The action supports the following inputs:
-
setops_version
- (optional) The version of SetOps CLI to install. Instead of a full version string, you can also specify a constraint string (see Semver Ranges for available range specifications). Examples are:<0.1.5
,~0.1.4
,0.1.x
(all three installing the latest available 0.1.4 version). If no version is given, it will default tolatest
. -
setops_organization
- (optional) The SetOps organization to login to. If not set, no login will be executed. -
setops_username
- (optional) The SetOps username for a SetOps service to login in. If not set, no login will be executed. -
setops_password
- (optional) The SetOps password for a SetOps service to login in. If not set, no login will be executed.
This action does not configure any outputs.