Update packages to support http_proxy

This commit is contained in:
David Kale
2020-02-06 15:16:41 -05:00
parent 63d68602dd
commit 90c448a85d
5 changed files with 3970 additions and 3966 deletions

View File

@ -3,11 +3,11 @@ let tempDirectory = process.env['RUNNER_TEMP'] || '';
import * as core from '@actions/core';
import * as io from '@actions/io';
import * as exec from '@actions/exec';
import * as httpm from '@actions/http-client';
import * as tc from '@actions/tool-cache';
import * as fs from 'fs';
import * as path from 'path';
import * as semver from 'semver';
import * as httpm from 'typed-rest-client/HttpClient';
const IS_WINDOWS = process.platform === 'win32';