Update checked-in dependencies
This commit is contained in:
parent
75e4d9f140
commit
4154eaf0e9
55 changed files with 1717 additions and 1934 deletions
10
node_modules/@actions/artifact/lib/internal/contracts.d.ts
generated
vendored
10
node_modules/@actions/artifact/lib/internal/contracts.d.ts
generated
vendored
|
|
@ -25,8 +25,18 @@ export interface PatchArtifactSizeSuccessResponse {
|
|||
uploadUrl: string;
|
||||
}
|
||||
export interface UploadResults {
|
||||
/**
|
||||
* The size in bytes of data that was transferred during the upload process to the actions backend service. This takes into account possible
|
||||
* gzip compression to reduce the amount of data that needs to be transferred
|
||||
*/
|
||||
uploadSize: number;
|
||||
/**
|
||||
* The raw size of the files that were specified for upload
|
||||
*/
|
||||
totalSize: number;
|
||||
/**
|
||||
* An array of files that failed to upload
|
||||
*/
|
||||
failedItems: string[];
|
||||
}
|
||||
export interface ListArtifactsResponse {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue