6c406e8a24
## [1.9.2](https://github.com/actions/create-github-app-token/compare/v1.9.1...v1.9.2) (2024-04-01)
### Bug Fixes
* **deps:** bump the production-dependencies group with 1 update ([#123](https://github.com/actions/create-github-app-token/issues/123)) ([beea7b8](https://github.com/actions/create-github-app-token/commit/beea7b860ac0b14ca14258aca701da842aa65e30)), closes [nodejs/undici#2978](https://github.com/nodejs/undici/issues/2978) [nodejs/undici#2971](https://github.com/nodejs/undici/issues/2971) [nodejs/undici#2980](https://github.com/nodejs/undici/issues/2980) [#2982](https://github.com/actions/create-github-app-token/issues/2982) [nodejs/undici#2983](https://github.com/nodejs/undici/issues/2983) [nodejs/undici#2987](https://github.com/nodejs/undici/issues/2987) [nodejs/undici#2991](https://github.com/nodejs/undici/issues/2991) [#2986](https://github.com/actions/create-github-app-token/issues/2986) [nodejs/undici#2992](https://github.com/nodejs/undici/issues/2992) [nodejs/undici#2985](https://github.com/nodejs/undici/issues/2985) [nodejs/undici#2993](https://github.com/nodejs/undici/issues/2993) [nodejs/undici#2995](https://github.com/nodejs/undici/issues/2995) [nodejs/undici#2998](https://github.com/nodejs/undici/issues/2998) [#2863](https://github.com/actions/create-github-app-token/issues/2863) [nodejs/undici#2999](https://github.com/nodejs/undici/issues/2999) [nodejs/undici#3001](https://github.com/nodejs/undici/issues/3001) [nodejs/undici#2971](https://github.com/nodejs/undici/issues/2971) [nodejs/undici#2980](https://github.com/nodejs/undici/issues/2980) [nodejs/undici#2983](https://github.com/nodejs/undici/issues/2983) [nodejs/undici#2987](https://github.com/nodejs/undici/issues/2987) [nodejs/undici#2991](https://github.com/nodejs/undici/issues/2991) [nodejs/undici#2985](https://github.com/nodejs/undici/issues/2985) [nodejs/undici#2995](https://github.com/nodejs/undici/issues/2995) [nodejs/undici#2960](https://github.com/nodejs/undici/issues/2960) [nodejs/undici#2959](https://github.com/nodejs/undici/issues/2959) [nodejs/undici#2969](https://github.com/nodejs/undici/issues/2969) [nodejs/undici#2962](https://github.com/nodejs/undici/issues/2962) [nodejs/undici#2974](https://github.com/nodejs/undici/issues/2974) [nodejs/undici#2967](https://github.com/nodejs/undici/issues/2967) [nodejs/undici#2966](https://github.com/nodejs/undici/issues/2966) [nodejs/undici#2969](https://github.com/nodejs/undici/issues/2969) [nodejs/undici#2962](https://github.com/nodejs/undici/issues/2962) [nodejs/undici#2826](https://github.com/nodejs/undici/issues/2826) [nodejs/undici#2952](https://github.com/nodejs/undici/issues/2952) [#3001](https://github.com/actions/create-github-app-token/issues/3001) [#2863](https://github.com/actions/create-github-app-token/issues/2863) [#2999](https://github.com/actions/create-github-app-token/issues/2999) [#2998](https://github.com/actions/create-github-app-token/issues/2998) [#2993](https://github.com/actions/create-github-app-token/issues/2993) [#2986](https://github.com/actions/create-github-app-token/issues/2986) [#2992](https://github.com/actions/create-github-app-token/issues/2992) [#2991](https://github.com/actions/create-github-app-token/issues/2991) [#2987](https://github.com/actions/create-github-app-token/issues/2987)
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "create-github-app-token",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "1.9.2",
|
|
"description": "GitHub Action for creating a GitHub App Installation Access Token",
|
|
"scripts": {
|
|
"build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node20.0.0",
|
|
"test": "c8 --100 ava tests/index.js",
|
|
"coverage": "c8 report --reporter html",
|
|
"postcoverage": "open-cli coverage/index.html"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@octokit/auth-app": "^6.0.4",
|
|
"@octokit/request": "^9.0.1",
|
|
"p-retry": "^6.2.0",
|
|
"undici": "^6.10.2"
|
|
},
|
|
"devDependencies": {
|
|
"@sinonjs/fake-timers": "^11.2.2",
|
|
"ava": "^6.1.2",
|
|
"c8": "^9.1.0",
|
|
"dotenv": "^16.4.5",
|
|
"esbuild": "^0.20.2",
|
|
"execa": "^8.0.1",
|
|
"open-cli": "^8.0.0",
|
|
"yaml": "^2.4.1"
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"+([0-9]).x",
|
|
"main"
|
|
],
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/github",
|
|
"@semantic-release/npm",
|
|
"semantic-release-plugin-github-breaking-version-tag",
|
|
[
|
|
"@semantic-release/git",
|
|
{
|
|
"assets": [
|
|
"package.json",
|
|
"dist/*"
|
|
],
|
|
"message": "build(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|