Fix dependabot errors
I explicitly had to downgrade "@octokit/plugin-retry" to "^6.0.0". Other dependencies were upgraded.
This commit is contained in:
parent
f338ec87a3
commit
5f98c40063
1536 changed files with 52911 additions and 424849 deletions
7
node_modules/@actions/artifact/lib/internal/upload/upload-zip-specification.d.ts
generated
vendored
7
node_modules/@actions/artifact/lib/internal/upload/upload-zip-specification.d.ts
generated
vendored
|
|
@ -1,3 +1,5 @@
|
|||
/// <reference types="node" />
|
||||
import * as fs from 'fs';
|
||||
export interface UploadZipSpecification {
|
||||
/**
|
||||
* An absolute source path that points to a file that will be added to a zip. Null if creating a new directory
|
||||
|
|
@ -7,6 +9,11 @@ export interface UploadZipSpecification {
|
|||
* The destination path in a zip for a file
|
||||
*/
|
||||
destinationPath: string;
|
||||
/**
|
||||
* Information about the file
|
||||
* https://nodejs.org/api/fs.html#class-fsstats
|
||||
*/
|
||||
stats: fs.Stats;
|
||||
}
|
||||
/**
|
||||
* Checks if a root directory exists and is valid
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue