mirror of
https://github.com/actions/checkout.git
synced 2024-04-27 16:57:09 +08:00
2fac568c54
Bumps the minor-npm-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `1.10.0` | `1.10.1` | | [@actions/exec](https://github.com/actions/toolkit/tree/HEAD/packages/exec) | `1.0.1` | `1.1.1` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.5.3` | `20.12.7` | | [@vercel/ncc](https://github.com/vercel/ncc) | `0.36.1` | `0.38.1` | | [eslint-plugin-github](https://github.com/github/eslint-plugin-github) | `4.3.2` | `4.10.2` | Updates `@actions/core` from 1.10.0 to 1.10.1 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Updates `@actions/exec` from 1.0.1 to 1.1.1 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/exec/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/@actions/artifact@1.1.1/packages/exec) Updates `@types/node` from 20.5.3 to 20.12.7 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@vercel/ncc` from 0.36.1 to 0.38.1 - [Release notes](https://github.com/vercel/ncc/releases) - [Commits](https://github.com/vercel/ncc/compare/0.36.1...0.38.1) Updates `eslint-plugin-github` from 4.3.2 to 4.10.2 - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](https://github.com/github/eslint-plugin-github/compare/v4.3.2...v4.10.2) --- updated-dependencies: - dependency-name: "@actions/core" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-npm-dependencies - dependency-name: "@actions/exec" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-npm-dependencies - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-npm-dependencies - dependency-name: "@vercel/ncc" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-npm-dependencies - dependency-name: eslint-plugin-github dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-npm-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "checkout",
|
|
"version": "4.1.4",
|
|
"description": "checkout action",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc && ncc build && node lib/misc/generate-docs.js",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts",
|
|
"test": "jest",
|
|
"licensed-check": "src/misc/licensed-check.sh",
|
|
"licensed-generate": "src/misc/licensed-generate.sh"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/checkout.git"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"checkout"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/actions/checkout/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/checkout#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^5.0.0",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^1.1.2",
|
|
"uuid": "^3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "^20.12.7",
|
|
"@types/uuid": "^3.4.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
|
"@typescript-eslint/parser": "^5.45.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-github": "^4.10.2",
|
|
"eslint-plugin-jest": "^25.7.0",
|
|
"jest": "^27.3.0",
|
|
"jest-circus": "^27.3.0",
|
|
"js-yaml": "^3.13.1",
|
|
"prettier": "^1.19.1",
|
|
"ts-jest": "^27.0.7",
|
|
"typescript": "^4.4.4"
|
|
}
|
|
}
|