@useparagon/whiskers-cattery-node
Advanced tools
Comparing version 0.0.1-canary.18 to 0.0.1-canary.19
@@ -5,25 +5,49 @@ import { ActionsStepConfig, GithubActionWorkflowStep } from '@useparagon/whiskers-core'; | ||
*/ | ||
export type SetupNodeWorkflowStepParams = Partial<{ | ||
export type SetupNodeParams = Partial<{ | ||
/** | ||
* Version Spec of the version to use in SemVer notation. | ||
* Set always-auth in npmrc. | ||
* | ||
* It also emits such aliases as lts, latest, nightly and canary builds | ||
* @default false | ||
*/ | ||
'always-auth': string; | ||
/** | ||
* Target architecture for Node to use. Examples: x86, x64. Will use system architecture by default. | ||
*/ | ||
architecture: string; | ||
/** | ||
* Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm. | ||
*/ | ||
cache: string; | ||
/** | ||
* Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies. | ||
*/ | ||
'cache-dependency-path': string; | ||
/** | ||
* Set this option if you want the action to check for the latest available version that satisfies the version spec. | ||
* | ||
* Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node | ||
* @default false | ||
*/ | ||
'check-latest': boolean; | ||
/** | ||
* Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0. | ||
*/ | ||
'node-version': string; | ||
/** | ||
* File containing the version Spec of the version to use. Examples: .nvmrc, .node-version, .tool-versions. | ||
* | ||
* If node-version and node-version-file are both provided the action will use version from node-version. | ||
* File containing the version Spec of the version to use. Examples: package.json, .nvmrc, .node-version, .tool-versions. | ||
*/ | ||
'node-version-file': string; | ||
/** | ||
* Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm. | ||
* Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN. | ||
*/ | ||
'registry-url': string; | ||
/** | ||
* Optional scope for authenticating against scoped registries. Will fall back to the repository owner when using the GitHub Packages registry (https://npm.pkg.github.com/). | ||
*/ | ||
scope: string; | ||
/** | ||
* Used to pull node distributions from node-versions. Since there's a default, this is typically not supplied by the user. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting. | ||
* | ||
* Package manager should be pre-installed. | ||
* | ||
* Default: '' | ||
* @default ${{ github.server_url == 'https://github.com' && github.token || '' }} | ||
*/ | ||
cache: string; | ||
token: string; | ||
}>; | ||
@@ -33,4 +57,4 @@ /** | ||
*/ | ||
export declare class SetupNodeWorkflowStep extends GithubActionWorkflowStep<ActionsStepConfig<SetupNodeWorkflowStepParams>> { | ||
constructor(config?: Partial<ActionsStepConfig<SetupNodeWorkflowStepParams>>); | ||
export declare class SetupNodeWorkflowStep extends GithubActionWorkflowStep<ActionsStepConfig<SetupNodeParams>> { | ||
constructor(config?: Partial<ActionsStepConfig<SetupNodeParams>>); | ||
} |
@@ -7,3 +7,3 @@ "use strict"; | ||
name: 'setup node', | ||
uses: 'actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c', // v3.6.0 | ||
uses: 'actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8', // v4.0.2 | ||
}; | ||
@@ -10,0 +10,0 @@ /** |
{ | ||
"name": "@useparagon/whiskers-cattery-node", | ||
"version": "0.0.1-canary.18", | ||
"version": "0.0.1-canary.19", | ||
"bugs": "https://github.com/useparagon/whiskers/issues", | ||
@@ -19,3 +19,3 @@ "homepage": "https://github.com/useparagon/whiskers#readme", | ||
"tslib": "^2.6.2", | ||
"@useparagon/whiskers-core": "0.0.1-canary.18" | ||
"@useparagon/whiskers-core": "0.0.1-canary.19" | ||
}, | ||
@@ -22,0 +22,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
5279
91
0
+ Added@useparagon/whiskers-core@0.0.1-canary.19(transitive)
- Removed@useparagon/whiskers-core@0.0.1-canary.18(transitive)