Added compliance details

This commit is contained in:
Anumita Shenoy
2019-10-11 16:15:26 +05:30
parent d963b3fac2
commit d96a92f866
4 changed files with 299 additions and 5 deletions

View File

@@ -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);
}
}