Skip to content

Commit f68236f

Browse files
authored
Merge pull request #34 from yokawasa/v0.8.3
v0.8.3 release
2 parents 6e7661c + 2c10053 commit f68236f

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,37 @@
22

33
All notable changes to the "action-setup-kube-tools" will be documented in this file.
44

5+
## v0.8.3
6+
7+
- Upgrade to Node 16 and upgrade GitHub libs by @yhrn in [#31](https://github.com/yokawasa/action-setup-kube-tools/pull/31)
8+
9+
## v0.8.2
10+
11+
- Bump undici from 5.4.0 to 5.5.1 by @dependabot in [#26](https://github.com/yokawasa/action-setup-kube-tools/pull/26)
12+
13+
## v0.8.1
14+
15+
- Bump ajv from 6.10.2 to 6.12.6 by @dependabot in [#20](https://github.com/yokawasa/action-setup-kube-tools/pull/20)
16+
- Bump minimist from 1.2.5 to 1.2.6 by @dependabot in [#21](https://github.com/yokawasa/action-setup-kube-tools/pull/21)
17+
- Fix error in GHA workflow: prettier: not found by @yokawasa in [#25](https://github.com/yokawasa/action-setup-kube-tools/pull/25)
18+
519
## v0.8.0
20+
621
- remove `helmv3` parameter and install helm v3 with `helm` parameter - [#19](https://github.com/yokawasa/action-setup-kube-tools/pull/19)
722
- Instead add `helmv2` parameter to install helm v2
823

924
## v0.7.1
25+
1026
- fix: missing v prefix from kubeval and yq - [#16](https://github.com/yokawasa/action-setup-kube-tools/pull/16)
1127
- changed default versions: yq v4.7.1, kubeval v0.16.1
1228

1329
## v0.7.0
30+
1431
- Add fail-fast parameter (fail-fast:true by default) that allows you to choose to fail fast immediately when it fails to download (say due to a bad version) - [#14](https://github.com/yokawasa/action-setup-kube-tools/issues/14)
1532
- Support tool version 'v' prefix. Prior to this, the action only accept the tool version without 'v' prefix, but now the action automatically add/remove the prefix as necessary - [#13](https://github.com/yokawasa/action-setup-kube-tools/issues/13)
1633

1734
## v0.6.0
35+
1836
- add tools setup option to choose which tool to setup - [#8](https://github.com/yokawasa/action-setup-kube-tools/issues/8)
1937
- up default tool versions
2038
- kubectl: 1.20.2

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Specific versions for the commands can be setup by adding inputs parameters like
5252
runs-on: ubuntu-latest
5353
steps:
5454
- uses: actions/checkout@v2
55-
- uses: yokawasa/action-setup-kube-tools@v0.7.1
55+
- uses: yokawasa/action-setup-kube-tools@v0.8.3
5656
with:
5757
kubectl: '1.17.1'
5858
kustomize: '3.7.0'
@@ -85,7 +85,7 @@ Default versions for the commands will be setup if you don't give any inputs lik
8585
runs-on: ubuntu-latest
8686
steps:
8787
- uses: actions/checkout@v2
88-
- uses: yokawasa/[email protected].2
88+
- uses: yokawasa/[email protected].3
8989
- run: |
9090
kubectl version --client
9191
kustomize version
@@ -107,7 +107,7 @@ By specifying setup-tools you can choose which tools the action setup. Supported
107107
runs-on: ubuntu-latest
108108
steps:
109109
- uses: actions/checkout@v2
110-
- uses: yokawasa/[email protected].2
110+
- uses: yokawasa/[email protected].3
111111
with:
112112
setup-tools: |
113113
kubectl
@@ -142,7 +142,7 @@ Finally push the results
142142
```
143143
git add dist
144144
git commit -a -m "prod dependencies"
145-
git push origin releases/v0.8.2
145+
git push origin releases/v0.8.3
146146
```
147147

148148
## Contributing

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "action-setup-kube-tools",
3-
"version": "0.8.0",
3+
"version": "0.8.3",
44
"private": true,
55
"description": "Github Action that install Kubernetes tools (kubectl, kustomize, helm, kubeval, conftest, yq, rancher) and cache them on the runner",
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)