Skip to content

Commit

Permalink
Updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlad Volkov committed Nov 19, 2021
1 parent f5fb92e commit a02839e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ branding:
color: blue
inputs:
skaffold-version:
default: 1.33.0
default: 1.33.1
description: Set Skaffold version
required: false
container-structure-test-version:
default: 1.10.0
default: 1.11.0
description: Set Container Structure Test version
required: false
command:
Expand Down
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3905,7 +3905,7 @@ function resolveArgsFromAction() {
.concat(Object.entries(paramsArgumentsMap)
.map(function (_a) {
var actionParam = _a[0], skaffoldArg = _a[1];
return (0, core_1.getInput)(actionParam) !== '' ? "--" + skaffoldArg + "=" + (0, core_1.getInput)(actionParam) : '';
return (0, core_1.getInput)(actionParam) !== '' ? "--".concat(skaffoldArg, "=").concat((0, core_1.getInput)(actionParam)) : '';
})
.filter(function (it) { return it !== ''; }));
}
Expand All @@ -3920,8 +3920,8 @@ function run() {
suffix = platform === 'windows' ? '.exe' : '';
skaffoldVersion = (0, core_1.getInput)('skaffold-version');
containerStructureTestVersion = (0, core_1.getInput)('container-structure-test-version');
skaffoldTUrl = "https://github.com/GoogleContainerTools/skaffold/releases/download/v" + skaffoldVersion + "/skaffold-" + platform + "-amd64" + suffix;
containerStructureTestUrl = "https://storage.googleapis.com/container-structure-test/v" + containerStructureTestVersion + "/container-structure-test-" + platform + "-amd64";
skaffoldTUrl = "https://github.com/GoogleContainerTools/skaffold/releases/download/v".concat(skaffoldVersion, "/skaffold-").concat(platform, "-amd64").concat(suffix);
containerStructureTestUrl = "https://storage.googleapis.com/container-structure-test/v".concat(containerStructureTestVersion, "/container-structure-test-").concat(platform, "-amd64");
_b.label = 1;
case 1:
_b.trys.push([1, 7, , 8]);
Expand Down

0 comments on commit a02839e

Please sign in to comment.