@@ -558,7 +558,7 @@ class ToolRunner extends events.EventEmitter {
558
558
// command line parser.
559
559
//
560
560
// for a detailed description of the cmd.exe command line parser, refer to
561
- // https ://stackoverflow.com/questions/4094699/how-does-the-windows-command-interpreter-cmd-exe-parse-scripts/7970912#7970912
561
+ // http ://stackoverflow.com/questions/4094699/how-does-the-windows-command-interpreter-cmd-exe-parse-scripts/7970912#7970912
562
562
// need quotes for empty arg
563
563
if ( ! arg ) {
564
564
return '""' ;
@@ -1331,11 +1331,25 @@ async function run() {
1331
1331
const noCache = getBooleanInput ( 'no-cache' ) ;
1332
1332
const private = getBooleanInput ( 'private' ) ;
1333
1333
const immutable = getBooleanInput ( 'immutable' ) ;
1334
+
1334
1335
const cacheControl = core . getInput ( 'cacheControl' ) ;
1335
1336
const cache = core . getInput ( 'cache' ) || null ;
1336
1337
const filesToInclude = core . getInput ( 'files-to-include' ) || null ;
1337
1338
1338
- await deploy ( { folder, bucket, bucketRegion, distId, invalidation, deleteRemoved, noCache, private, cache, immutable, cacheControl, filesToInclude } ) ;
1339
+ await deploy ( {
1340
+ folder,
1341
+ bucket,
1342
+ bucketRegion,
1343
+ distId,
1344
+ invalidation,
1345
+ deleteRemoved,
1346
+ noCache,
1347
+ private,
1348
+ cache,
1349
+ immutable,
1350
+ cacheControl,
1351
+ filesToInclude,
1352
+ } ) ;
1339
1353
} catch ( error ) {
1340
1354
core . setFailed ( error . message ) ;
1341
1355
}
@@ -1657,10 +1671,6 @@ function checkBypass(reqUrl) {
1657
1671
if ( ! reqUrl . hostname ) {
1658
1672
return false ;
1659
1673
}
1660
- const reqHost = reqUrl . hostname ;
1661
- if ( isLoopbackAddress ( reqHost ) ) {
1662
- return true ;
1663
- }
1664
1674
const noProxy = process . env [ 'no_proxy' ] || process . env [ 'NO_PROXY' ] || '' ;
1665
1675
if ( ! noProxy ) {
1666
1676
return false ;
@@ -1686,24 +1696,13 @@ function checkBypass(reqUrl) {
1686
1696
. split ( ',' )
1687
1697
. map ( x => x . trim ( ) . toUpperCase ( ) )
1688
1698
. filter ( x => x ) ) {
1689
- if ( upperNoProxyItem === '*' ||
1690
- upperReqHosts . some ( x => x === upperNoProxyItem ||
1691
- x . endsWith ( `.${ upperNoProxyItem } ` ) ||
1692
- ( upperNoProxyItem . startsWith ( '.' ) &&
1693
- x . endsWith ( `${ upperNoProxyItem } ` ) ) ) ) {
1699
+ if ( upperReqHosts . some ( x => x === upperNoProxyItem ) ) {
1694
1700
return true ;
1695
1701
}
1696
1702
}
1697
1703
return false ;
1698
1704
}
1699
1705
exports . checkBypass = checkBypass ;
1700
- function isLoopbackAddress ( host ) {
1701
- const hostLower = host . toLowerCase ( ) ;
1702
- return ( hostLower === 'localhost' ||
1703
- hostLower . startsWith ( '127.' ) ||
1704
- hostLower . startsWith ( '[::1]' ) ||
1705
- hostLower . startsWith ( '[0:0:0:0:0:0:0:1]' ) ) ;
1706
- }
1707
1706
//# sourceMappingURL=proxy.js.map
1708
1707
1709
1708
/***/ } ) ,
@@ -1867,7 +1866,20 @@ const exec = __webpack_require__(986);
1867
1866
1868
1867
let deploy = function ( params ) {
1869
1868
return new Promise ( ( resolve , reject ) => {
1870
- const { folder, bucket, bucketRegion, distId, invalidation, deleteRemoved, noCache, private, cache, immutable, cacheControl, filesToInclude } = params ;
1869
+ const {
1870
+ folder,
1871
+ bucket,
1872
+ bucketRegion,
1873
+ distId,
1874
+ invalidation,
1875
+ deleteRemoved,
1876
+ noCache,
1877
+ private,
1878
+ cache,
1879
+ immutable,
1880
+ cacheControl,
1881
+ filesToInclude,
1882
+ } = params ;
1871
1883
1872
1884
const distIdArg = distId ? `--distId ${ distId } ` : '' ;
1873
1885
const invalidationArg = distId ? `--invalidate "${ invalidation } "` : '' ;
@@ -1881,7 +1893,7 @@ let deploy = function (params) {
1881
1893
const immutableArg = immutable ? '--immutable' : '' ;
1882
1894
const cacheControlArg = cacheControl ? `--cacheControl ${ cacheControl } ` : '' ;
1883
1895
const privateArg = private ? '--private' : '' ;
1884
- const cacheFlag = cache ? `--cache ${ cache } ` : '' ;
1896
+ const cacheFlag = cache ? `--cache ${ cache } ` : '' ;
1885
1897
const filesRegex = filesToInclude ? filesToInclude : '**' ;
1886
1898
1887
1899
try {
@@ -1891,7 +1903,7 @@ let deploy = function (params) {
1891
1903
--cwd ./ \
1892
1904
${ distIdArg } \
1893
1905
--etag \
1894
- --gzip xml,html,htm,js,css,ttf,otf,svg, txt \
1906
+ --gzip xml,html,htm,js,css,ttf,otf,txt \
1895
1907
${ cacheFlag } \
1896
1908
${ invalidationArg } \
1897
1909
${ deleteRemovedArg } \
@@ -3382,7 +3394,7 @@ class Summary {
3382
3394
/**
3383
3395
* If the summary buffer is empty
3384
3396
*
3385
- * @returns {boolean } true if the buffer is empty
3397
+ * @returns {boolen } true if the buffer is empty
3386
3398
*/
3387
3399
isEmptyBuffer ( ) {
3388
3400
return this . _buffer . length === 0 ;
@@ -3878,9 +3890,9 @@ class OidcClient {
3878
3890
const res = yield httpclient
3879
3891
. getJson ( id_token_url )
3880
3892
. catch ( error => {
3881
- throw new Error ( `Failed to get ID Token. \n
3882
- Error Code : ${ error . statusCode } \n
3883
- Error Message: ${ error . result . message } ` ) ;
3893
+ throw new Error ( `Failed to get ID Token. \n
3894
+ Error Code : ${ error . statusCode } \n
3895
+ Error Message: ${ error . message } ` ) ;
3884
3896
} ) ;
3885
3897
const id_token = ( _a = res . result ) === null || _a === void 0 ? void 0 : _a . value ;
3886
3898
if ( ! id_token ) {
@@ -4002,7 +4014,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
4002
4014
// **`v1()` - Generate time-based UUID**
4003
4015
//
4004
4016
// Inspired by https://github.com/LiosK/UUID.js
4005
- // and https ://docs.python.org/3 /library/uuid.html
4017
+ // and http ://docs.python.org/library/uuid.html
4006
4018
let _nodeId ;
4007
4019
4008
4020
let _clockseq ; // Previous uuid creation time
@@ -4172,7 +4184,7 @@ function getExecOutput(commandLine, args, options) {
4172
4184
return __awaiter ( this , void 0 , void 0 , function * ( ) {
4173
4185
let stdout = '' ;
4174
4186
let stderr = '' ;
4175
- // Using string decoder covers the case where a multi -byte character is split
4187
+ //Using string decoder covers the case where a mult -byte character is split
4176
4188
const stdoutDecoder = new string_decoder_1 . StringDecoder ( 'utf8' ) ;
4177
4189
const stderrDecoder = new string_decoder_1 . StringDecoder ( 'utf8' ) ;
4178
4190
const originalStdoutListener = ( _a = options === null || options === void 0 ? void 0 : options . listeners ) === null || _a === void 0 ? void 0 : _a . stdout ;
@@ -4191,7 +4203,7 @@ function getExecOutput(commandLine, args, options) {
4191
4203
} ;
4192
4204
const listeners = Object . assign ( Object . assign ( { } , options === null || options === void 0 ? void 0 : options . listeners ) , { stdout : stdOutListener , stderr : stdErrListener } ) ;
4193
4205
const exitCode = yield exec ( commandLine , args , Object . assign ( Object . assign ( { } , options ) , { listeners } ) ) ;
4194
- // flush any remaining characters
4206
+ //flush any remaining characters
4195
4207
stdout += stdoutDecoder . end ( ) ;
4196
4208
stderr += stderrDecoder . end ( ) ;
4197
4209
return {
@@ -4206,4 +4218,4 @@ exports.getExecOutput = getExecOutput;
4206
4218
4207
4219
/***/ } )
4208
4220
4209
- /******/ } ) ;
4221
+ /******/ } ) ;
0 commit comments