Update checked-in dependencies
This commit is contained in:
parent
6ca0c46132
commit
5eb7f8c9a4
5 changed files with 8 additions and 6 deletions
2
node_modules/@actions/artifact/lib/internal/requestUtils.d.ts
generated
vendored
2
node_modules/@actions/artifact/lib/internal/requestUtils.d.ts
generated
vendored
|
|
@ -1,3 +1,3 @@
|
|||
import { IHttpClientResponse } from '@actions/http-client/interfaces';
|
||||
export declare function retry(name: string, operation: () => Promise<IHttpClientResponse>, customErrorMessages: Map<number, string>, maxAttempts: number): Promise<IHttpClientResponse>;
|
||||
export declare function retryHttpClientRequest<T>(name: string, method: () => Promise<IHttpClientResponse>, customErrorMessages?: Map<number, string>, maxAttempts?: number): Promise<IHttpClientResponse>;
|
||||
export declare function retryHttpClientRequest(name: string, method: () => Promise<IHttpClientResponse>, customErrorMessages?: Map<number, string>, maxAttempts?: number): Promise<IHttpClientResponse>;
|
||||
|
|
|
|||
3
node_modules/@actions/artifact/lib/internal/utils.js
generated
vendored
3
node_modules/@actions/artifact/lib/internal/utils.js
generated
vendored
|
|
@ -69,8 +69,9 @@ function isRetryableStatusCode(statusCode) {
|
|||
}
|
||||
const retryableStatusCodes = [
|
||||
http_client_1.HttpCodes.BadGateway,
|
||||
http_client_1.HttpCodes.ServiceUnavailable,
|
||||
http_client_1.HttpCodes.GatewayTimeout,
|
||||
http_client_1.HttpCodes.InternalServerError,
|
||||
http_client_1.HttpCodes.ServiceUnavailable,
|
||||
http_client_1.HttpCodes.TooManyRequests,
|
||||
413 // Payload Too Large
|
||||
];
|
||||
|
|
|
|||
2
node_modules/@actions/artifact/lib/internal/utils.js.map
generated
vendored
2
node_modules/@actions/artifact/lib/internal/utils.js.map
generated
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue