mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-05-17 10:15:23 +00:00
See [GitHub Actions: All Actions will begin running on Node16 instead of Node12](https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/)
23 lines
678 B
YAML
23 lines
678 B
YAML
name: 'Setup Kustomize'
|
|
description: 'Setup a Kustomize environment and add it to the path'
|
|
author: 'Imran Ismail <imran.codely@gmail.com>'
|
|
branding:
|
|
icon: edit
|
|
color: purple
|
|
inputs:
|
|
kustomize-version:
|
|
description: 'Version Spec of the version to use. Examples: 10.x, 10.15.1, >=10.15.0'
|
|
required: false
|
|
default: '*'
|
|
github-token:
|
|
description: 'Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`.'
|
|
required: false
|
|
default: ${{ github.token }}
|
|
fail-fast:
|
|
description: 'Fail quickly on github rate limit. "false" or "true".'
|
|
required: false
|
|
default: 'false'
|
|
runs:
|
|
using: 'node16'
|
|
main: 'dist/index.js'
|