mirror of
https://github.com/Azure/setup-helm.git
synced 2026-04-06 06:29:27 +00:00
Added compliance details
This commit is contained in:
parent
d963b3fac2
commit
d96a92f866
4 changed files with 299 additions and 5 deletions
|
|
@ -1,10 +1,13 @@
|
|||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
|
||||
import * as os from 'os';
|
||||
import * as path from 'path';
|
||||
import * as util from 'util';
|
||||
import * as fs from 'fs';
|
||||
|
||||
import * as toolCache from '../node_modules/@actions/tool-cache';
|
||||
import * as core from '../node_modules/@actions/core';
|
||||
import * as toolCache from '@actions/tool-cache';
|
||||
import * as core from '@actions/core';
|
||||
|
||||
const helmToolName = 'helm';
|
||||
const stableHelmVersion = 'v2.14.1';
|
||||
|
|
@ -28,7 +31,6 @@ function getHelmDownloadURL(version: string): string {
|
|||
case 'Windows_NT':
|
||||
default:
|
||||
return util.format('https://get.helm.sh/helm-%s-windows-amd64.zip', version);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue