Skip to content

Commit

Permalink
Merge pull request #40 from yokawasa/v0.9.2
Browse files Browse the repository at this point in the history
v0.9.2 release
  • Loading branch information
yokawasa authored Nov 3, 2022
2 parents 6e5588d + b3b9cac commit b91bb02
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 33 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## v0.9.2

- upgrade kustomize 4.5.7 by @MichaelSp - [#39](https://github.com/yokawasa/action-setup-kube-tools/pull/39)

## v0.9.1

- Fix the issue : Using the action produces set-output deprecation warnings by @msg-freiheit - [#36](https://github.com/yokawasa/action-setup-kube-tools/issues/36)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Specific versions for the commands can be setup by adding inputs parameters like
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: yokawasa/[email protected].1
- uses: yokawasa/[email protected].2
with:
kubectl: '1.17.1'
kustomize: '3.7.0'
Expand Down Expand Up @@ -87,7 +87,7 @@ Default versions for the commands will be setup if you don't give any inputs lik
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: yokawasa/[email protected].1
- uses: yokawasa/[email protected].2
- run: |
kubectl version --client
kustomize version
Expand All @@ -109,7 +109,7 @@ By specifying setup-tools you can choose which tools the action setup. Supported
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: yokawasa/[email protected].1
- uses: yokawasa/[email protected].2
with:
setup-tools: |
kubectl
Expand Down Expand Up @@ -144,7 +144,7 @@ Finally push the results
```
git add dist
git commit -a -m "prod dependencies"
git push origin releases/v0.9.1
git push origin releases/v0.9.2
```

## Contributing
Expand Down
35 changes: 9 additions & 26 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,38 +6,21 @@

"use strict";

var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", ({ value: true }));
const os = __importStar(__nccwpck_require__(2037));
const path = __importStar(__nccwpck_require__(1017));
Expand All @@ -46,7 +29,7 @@ const fs = __importStar(__nccwpck_require__(7147));
const toolCache = __importStar(__nccwpck_require__(7784));
const core = __importStar(__nccwpck_require__(2186));
const defaultKubectlVersion = '1.20.2';
const defaultKustomizeVersion = '4.0.5';
const defaultKustomizeVersion = '4.5.7';
const defaultHelmVersion = '3.6.3';
const defaultHelmv2Version = '2.17.0';
const defaultKubevalVersion = '0.16.1';
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "action-setup-kube-tools",
"version": "0.9.1",
"version": "0.9.2",
"private": true,
"description": "Github Action that install Kubernetes tools (kubectl, kustomize, helm, kubeconform, conftest, yq, etc.) and cache them on the runner",
"main": "lib/main.js",
Expand Down

0 comments on commit b91bb02

Please sign in to comment.