Change to @action/http-client version to the one that was used in the most recent build
This commit is contained in:
		
							parent
							
								
									b51c97f6e3
								
							
						
					
					
						commit
						f71253fee3
					
				
							
								
								
									
										17
									
								
								dist/cache-save/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										17
									
								
								dist/cache-save/index.js
									
									
									
									
										vendored
									
									
								
							| @ -7195,10 +7195,6 @@ function checkBypass(reqUrl) { | |||||||
|     if (!reqUrl.hostname) { |     if (!reqUrl.hostname) { | ||||||
|         return false; |         return false; | ||||||
|     } |     } | ||||||
|     const reqHost = reqUrl.hostname; |  | ||||||
|     if (isLoopbackAddress(reqHost)) { |  | ||||||
|         return true; |  | ||||||
|     } |  | ||||||
|     const noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || ''; |     const noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || ''; | ||||||
|     if (!noProxy) { |     if (!noProxy) { | ||||||
|         return false; |         return false; | ||||||
| @ -7224,24 +7220,13 @@ function checkBypass(reqUrl) { | |||||||
|         .split(',') |         .split(',') | ||||||
|         .map(x => x.trim().toUpperCase()) |         .map(x => x.trim().toUpperCase()) | ||||||
|         .filter(x => x)) { |         .filter(x => x)) { | ||||||
|         if (upperNoProxyItem === '*' || |         if (upperReqHosts.some(x => x === upperNoProxyItem)) { | ||||||
|             upperReqHosts.some(x => x === upperNoProxyItem || |  | ||||||
|                 x.endsWith(`.${upperNoProxyItem}`) || |  | ||||||
|                 (upperNoProxyItem.startsWith('.') && |  | ||||||
|                     x.endsWith(`${upperNoProxyItem}`)))) { |  | ||||||
|             return true; |             return true; | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|     return false; |     return false; | ||||||
| } | } | ||||||
| exports.checkBypass = checkBypass; | exports.checkBypass = checkBypass; | ||||||
| function isLoopbackAddress(host) { |  | ||||||
|     const hostLower = host.toLowerCase(); |  | ||||||
|     return (hostLower === 'localhost' || |  | ||||||
|         hostLower.startsWith('127.') || |  | ||||||
|         hostLower.startsWith('[::1]') || |  | ||||||
|         hostLower.startsWith('[0:0:0:0:0:0:0:1]')); |  | ||||||
| } |  | ||||||
| //# sourceMappingURL=proxy.js.map
 | //# sourceMappingURL=proxy.js.map
 | ||||||
| 
 | 
 | ||||||
| /***/ }), | /***/ }), | ||||||
|  | |||||||
							
								
								
									
										17
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										17
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							| @ -8382,10 +8382,6 @@ function checkBypass(reqUrl) { | |||||||
|     if (!reqUrl.hostname) { |     if (!reqUrl.hostname) { | ||||||
|         return false; |         return false; | ||||||
|     } |     } | ||||||
|     const reqHost = reqUrl.hostname; |  | ||||||
|     if (isLoopbackAddress(reqHost)) { |  | ||||||
|         return true; |  | ||||||
|     } |  | ||||||
|     const noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || ''; |     const noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || ''; | ||||||
|     if (!noProxy) { |     if (!noProxy) { | ||||||
|         return false; |         return false; | ||||||
| @ -8411,24 +8407,13 @@ function checkBypass(reqUrl) { | |||||||
|         .split(',') |         .split(',') | ||||||
|         .map(x => x.trim().toUpperCase()) |         .map(x => x.trim().toUpperCase()) | ||||||
|         .filter(x => x)) { |         .filter(x => x)) { | ||||||
|         if (upperNoProxyItem === '*' || |         if (upperReqHosts.some(x => x === upperNoProxyItem)) { | ||||||
|             upperReqHosts.some(x => x === upperNoProxyItem || |  | ||||||
|                 x.endsWith(`.${upperNoProxyItem}`) || |  | ||||||
|                 (upperNoProxyItem.startsWith('.') && |  | ||||||
|                     x.endsWith(`${upperNoProxyItem}`)))) { |  | ||||||
|             return true; |             return true; | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|     return false; |     return false; | ||||||
| } | } | ||||||
| exports.checkBypass = checkBypass; | exports.checkBypass = checkBypass; | ||||||
| function isLoopbackAddress(host) { |  | ||||||
|     const hostLower = host.toLowerCase(); |  | ||||||
|     return (hostLower === 'localhost' || |  | ||||||
|         hostLower.startsWith('127.') || |  | ||||||
|         hostLower.startsWith('[::1]') || |  | ||||||
|         hostLower.startsWith('[0:0:0:0:0:0:0:1]')); |  | ||||||
| } |  | ||||||
| //# sourceMappingURL=proxy.js.map
 | //# sourceMappingURL=proxy.js.map
 | ||||||
| 
 | 
 | ||||||
| /***/ }), | /***/ }), | ||||||
|  | |||||||
							
								
								
									
										14
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										14
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @ -18,7 +18,7 @@ | |||||||
|         "semver": "^7.1.3" |         "semver": "^7.1.3" | ||||||
|       }, |       }, | ||||||
|       "devDependencies": { |       "devDependencies": { | ||||||
|         "@actions/http-client": "^2.1.0", |         "@actions/http-client": "^2.0.1", | ||||||
|         "@types/jest": "^27.0.2", |         "@types/jest": "^27.0.2", | ||||||
|         "@types/node": "^16.11.25", |         "@types/node": "^16.11.25", | ||||||
|         "@types/semver": "^7.1.0", |         "@types/semver": "^7.1.0", | ||||||
| @ -106,9 +106,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/@actions/http-client": { |     "node_modules/@actions/http-client": { | ||||||
|       "version": "2.1.0", |       "version": "2.0.1", | ||||||
|       "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.1.0.tgz", |       "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz", | ||||||
|       "integrity": "sha512-BonhODnXr3amchh4qkmjPMUO8mFi/zLaaCeCAJZqch8iQqyDnVIkySjB38VHAC8IJ+bnlgfOqlhpyCUZHlQsqw==", |       "integrity": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==", | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "tunnel": "^0.0.6" |         "tunnel": "^0.0.6" | ||||||
|       } |       } | ||||||
| @ -6952,9 +6952,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "@actions/http-client": { |     "@actions/http-client": { | ||||||
|       "version": "2.1.0", |       "version": "2.0.1", | ||||||
|       "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.1.0.tgz", |       "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz", | ||||||
|       "integrity": "sha512-BonhODnXr3amchh4qkmjPMUO8mFi/zLaaCeCAJZqch8iQqyDnVIkySjB38VHAC8IJ+bnlgfOqlhpyCUZHlQsqw==", |       "integrity": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==", | ||||||
|       "requires": { |       "requires": { | ||||||
|         "tunnel": "^0.0.6" |         "tunnel": "^0.0.6" | ||||||
|       } |       } | ||||||
|  | |||||||
| @ -34,7 +34,7 @@ | |||||||
|     "semver": "^7.1.3" |     "semver": "^7.1.3" | ||||||
|   }, |   }, | ||||||
|   "devDependencies": { |   "devDependencies": { | ||||||
|     "@actions/http-client": "^2.1.0", |     "@actions/http-client": "^2.0.1", | ||||||
|     "@types/jest": "^27.0.2", |     "@types/jest": "^27.0.2", | ||||||
|     "@types/node": "^16.11.25", |     "@types/node": "^16.11.25", | ||||||
|     "@types/semver": "^7.1.0", |     "@types/semver": "^7.1.0", | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user