Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated sample tool versions in README #55

Merged
merged 1 commit into from
Feb 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 21 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ Specific versions for the commands can be setup by adding inputs parameters like
- uses: actions/checkout@v2
- uses: yokawasa/[email protected]
with:
kubectl: '1.17.1'
kustomize: '3.7.0'
helm: '3.5.2'
kubectl: '1.25'
kustomize: '5.0.0'
helm: '3.11.1'
kubeconform: '0.5.0'
conftest: '0.18.2'
rancher: '2.4.10'
tilt: '0.18.11'
skaffold: '1.20.0'
kube-score: '1.10.1'
conftest: '0.39.0'
rancher: '2.7.0'
tilt: '0.31.2'
skaffold: '2.1.0'
kube-score: '1.16.1'
- run: |
kubectl version --client
kustomize version
Expand Down Expand Up @@ -110,10 +110,10 @@ By specifying setup-tools you can choose which tools the action setup. Supported
helm
kustomize
skaffold
kubectl: '1.17.1'
helm: '3.5.2'
kustomize: '3.7.0'
skaffold: '1.20.0'
kubectl: '1.25'
helm: '3.11.1'
kustomize: '5.0.0'
skaffold: '2.1.0'
- run: |
kubectl version --client
kustomize version
Expand All @@ -132,9 +132,18 @@ By specifying arch-type you can choose the processor architecture type of the to
arch-type: 'arm64'
setup-tools: |
kubectl
helm
kustomize
skaffold
kubectl: '1.25'
helm: '3.11.1'
kustomize: '5.0.0'
skaffold: '2.1.0'
- run: |
kubectl version --client
kustomize version
helm version
skaffold version
```


Expand Down