Files
setup-kustomize/action.yml
Peter Thorin 841007459d Use Node 16 (#273)
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/)
2022-10-17 01:49:13 +08:00

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'