a8d6161485
## [2.1.1](https://github.com/actions/create-github-app-token/compare/v2.1.0...v2.1.1) (2025-08-11)
### Bug Fixes
* revert "use `node24` as runner" ([#278](https://github.com/actions/create-github-app-token/issues/278)) ([5204204](https://github.com/actions/create-github-app-token/commit/5204204e81cbd981afcdf714413410ba8697fd67)), closes [actions/create-github-app-token#267](https://github.com/actions/create-github-app-token/issues/267)
57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "create-github-app-token",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "2.1.1",
|
|
"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 --packages=bundle",
|
|
"test": "c8 --100 ava tests/index.js",
|
|
"coverage": "c8 report --reporter html",
|
|
"postcoverage": "open-cli coverage/index.html"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@octokit/auth-app": "^7.2.1",
|
|
"@octokit/request": "^9.2.2",
|
|
"p-retry": "^6.2.1",
|
|
"undici": "^7.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@octokit/openapi": "^19.1.0",
|
|
"@sinonjs/fake-timers": "^14.0.0",
|
|
"ava": "^6.4.0",
|
|
"c8": "^10.1.3",
|
|
"dotenv": "^16.5.0",
|
|
"esbuild": "^0.25.6",
|
|
"execa": "^9.6.0",
|
|
"open-cli": "^8.0.0",
|
|
"yaml": "^2.8.0"
|
|
},
|
|
"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",
|
|
"package-lock.json",
|
|
"dist/*"
|
|
],
|
|
"message": "build(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|