{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":642580244,"defaultBranch":"main","name":"create-github-app-token","ownerLogin":"actions","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2023-05-18T22:34:57.000Z","ownerAvatar":"https://github.com/avatars/u/44036562?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1719860578.0","currentOid":""},"activityList":{"items":[{"before":"54313cebe25178adabe6d98ee0fdd4ce8c32c3da","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/development-dependencies-39087a2ce8","pushedAt":"2024-07-01T19:02:58.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"}},{"before":"31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4","after":"040c2598aacc31cdff32d3527b574e70a22707f8","ref":"refs/heads/main","pushedAt":"2024-07-01T19:02:56.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"build(deps-dev): bump the development-dependencies group with 4 updates (#150)\n\nBumps the development-dependencies group with 4 updates:\r\n[c8](https://github.com/bcoe/c8),\r\n[esbuild](https://github.com/evanw/esbuild),\r\n[execa](https://github.com/sindresorhus/execa) and\r\n[yaml](https://github.com/eemeli/yaml).\r\n\r\nUpdates `c8` from 9.1.0 to 10.1.2\r\n
\r\nRelease notes\r\n

Sourced from c8's\r\nreleases.

\r\n
\r\n

v10.1.2

\r\n

10.1.2\r\n(2024-06-13)

\r\n

Bug Fixes

\r\n\r\n

v10.1.1

\r\n

10.1.1\r\n(2024-06-11)

\r\n

Bug Fixes

\r\n\r\n

v10.1.0

\r\n

10.1.0\r\n(2024-06-11)

\r\n

Features

\r\n\r\n

v10.0.0

\r\n

10.0.0\r\n(2024-06-10)

\r\n

⚠ BREAKING CHANGES

\r\n\r\n

Bug Fixes

\r\n\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from c8's\r\nchangelog.

\r\n
\r\n

10.1.2\r\n(2024-06-13)

\r\n

Bug Fixes

\r\n\r\n

10.1.1\r\n(2024-06-11)

\r\n

Bug Fixes

\r\n\r\n

10.1.0\r\n(2024-06-11)

\r\n

Features

\r\n\r\n

10.0.0\r\n(2024-06-10)

\r\n

⚠ BREAKING CHANGES

\r\n\r\n

Bug Fixes

\r\n\r\n
\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\nUpdates `esbuild` from 0.21.4 to 0.22.0\r\n
\r\nRelease notes\r\n

Sourced from esbuild's\r\nreleases.

\r\n
\r\n

v0.22.0

\r\n

This release deliberately contains backwards-incompatible\r\nchanges. To avoid automatically picking up releases like this,\r\nyou should either be pinning the exact version of esbuild\r\nin your package.json file (recommended) or be using a\r\nversion range syntax that only accepts patch upgrades such as\r\n^0.21.0 or ~0.21.0. See npm's documentation\r\nabout semver for\r\nmore information.

\r\n\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nChangelog\r\n

Sourced from esbuild's\r\nchangelog.

\r\n
\r\n

0.22.0

\r\n

This release deliberately contains backwards-incompatible\r\nchanges. To avoid automatically picking up releases like this,\r\nyou should either be pinning the exact version of esbuild\r\nin your package.json file (recommended) or be using a\r\nversion range syntax that only accepts patch upgrades such as\r\n^0.21.0 or ~0.21.0. See npm's documentation\r\nabout semver for\r\nmore information.

\r\n\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\nUpdates `execa` from 9.1.0 to 9.3.0\r\n
\r\nRelease notes\r\n

Sourced from execa's\r\nreleases.

\r\n
\r\n

v9.3.0

\r\n

Features

\r\n\r\n

v9.2.0

\r\n

This release includes a new\r\nset of methods to exchange messages between the current process and\r\na Node.js subprocess, also known as "IPC". This allows passing\r\nand returning\r\nalmost any message type to/from a Node.js subprocess. Also, debugging\r\nIPC is now much easier.

\r\n

Moreover, a new gracefulCancel\r\noption has also been added to terminate\r\na subprocess gracefully.

\r\n

For a deeper dive-in, please check and share the release\r\npost!

\r\n

Thanks @​iiroj\r\nfor your contribution, @​SimonSiefke and\r\n@​adymorz for\r\nreporting the bugs fixed in this release, and @​karlhorky for\r\nimproving the documentation!

\r\n

Deprecations

\r\n\r\n
- await execa('npm', ['run', 'build'], {stdio:\r\n['pipe', 'pipe', 'pipe', 'ipc']});\r\n+ await execa('npm', ['run', 'build'], {ipc: true});\r\n
\r\n\r\n
- import {execaCommand} from 'execa';\r\n+ import {execa} from 'execa';\r\n
    \r\n
  • await execaCommand('npm run build');
  • \r\n
\r\n
    \r\n
  • await execanpm run build;
  • \r\n
\r\n

const taskName = 'build';

\r\n
    \r\n
  • await execaCommand(npm run ${taskName});
  • \r\n
\r\n
    \r\n
  • await execanpm run ${taskName};
  • \r\n
\r\n

const commandArguments = ['run', 'task with space'];\r\nawait execanpm ${commandArguments};\r\n

\r\n

If the file and/or multiple arguments are supplied as a single\r\nstring, parseCommandString(command)\r\ncan split that string into an array. More\r\ninfo. (#1054)

\r\n
- import {execaCommand} from 'execa';\r\n+ import {execa, parseCommandString} from 'execa';\r\n

const commandString = 'npm run task';

\r\n
    \r\n
  • await execaCommand(commandString);
  • \r\n
\r\n
    \r\n
  • const commandArray = parseCommandString(commandString); // ['npm',\r\n'run', 'task']
  • \r\n
  • await execa${commandArray};\r\n</tr></table>\r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\nUpdates `yaml` from 2.4.2 to 2.4.5\r\n
\r\nRelease notes\r\n

Sourced from yaml's\r\nreleases.

\r\n
\r\n

v2.4.5

\r\n\r\n

v2.4.4

\r\n

With special thanks to @​RedCMD for finding\r\nand reporting all of the following:

\r\n\r\n

v2.4.3

\r\n\r\n
\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\n---------\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\r\nCo-authored-by: Gregor Martynus <39992+gr2m@users.noreply.github.com>","shortMessageHtmlLink":"build(deps-dev): bump the development-dependencies group with 4 updat…"}},{"before":"a0a8bd47a4e48d506e1bbe2ab1d37ddbe7561a74","after":"54313cebe25178adabe6d98ee0fdd4ce8c32c3da","ref":"refs/heads/dependabot/npm_and_yarn/development-dependencies-39087a2ce8","pushedAt":"2024-07-01T18:01:06.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"oops","shortMessageHtmlLink":"oops"}},{"before":"025806f9094a89d8f481291dbaa1826ef2120a95","after":"a0a8bd47a4e48d506e1bbe2ab1d37ddbe7561a74","ref":"refs/heads/dependabot/npm_and_yarn/development-dependencies-39087a2ce8","pushedAt":"2024-07-01T18:00:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"back to CJS :shrug:","shortMessageHtmlLink":"back to CJS 🤷"}},{"before":"2cfcf408a48df495925420b8b2288bd4b960e560","after":"025806f9094a89d8f481291dbaa1826ef2120a95","ref":"refs/heads/dependabot/npm_and_yarn/development-dependencies-39087a2ce8","pushedAt":"2024-07-01T17:49:06.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"Merge branch 'main' into dependabot/npm_and_yarn/development-dependencies-39087a2ce8","shortMessageHtmlLink":"Merge branch 'main' into dependabot/npm_and_yarn/development-dependen…"}},{"before":"270d5b6057f6716e20ed5e2b14871ae80b034536","after":"2cfcf408a48df495925420b8b2288bd4b960e560","ref":"refs/heads/dependabot/npm_and_yarn/development-dependencies-39087a2ce8","pushedAt":"2024-07-01T15:48:27.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"build: explicitly bundle packages with `--platform=node` as per https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md\\#0220","shortMessageHtmlLink":"build: explicitly bundle packages with --platform=node as per https…"}},{"before":"cc82279e84540c5543078cedc5af4fcfab0a96bb","after":"31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4","ref":"refs/heads/main","pushedAt":"2024-07-01T13:15:09.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"create-app-token-action-releaser[bot]","name":null,"path":"/apps/create-app-token-action-releaser","primaryAvatarUrl":"https://github.com/avatars/in/342846?s=80&v=4"},"commit":{"message":"build(release): 1.10.3 [skip ci]\n\n## [1.10.3](https://github.com/actions/create-github-app-token/compare/v1.10.2...v1.10.3) (2024-07-01)\n\n### Bug Fixes\n\n* **deps:** bump undici from 6.18.2 to 6.19.2 in the production-dependencies group ([#149](https://github.com/actions/create-github-app-token/issues/149)) ([cc82279](https://github.com/actions/create-github-app-token/commit/cc82279e84540c5543078cedc5af4fcfab0a96bb)), closes [#3337](https://github.com/actions/create-github-app-token/issues/3337) [nodejs/undici#3338](https://github.com/nodejs/undici/issues/3338) [nodejs/undici#3340](https://github.com/nodejs/undici/issues/3340) [nodejs/undici#3332](https://github.com/nodejs/undici/issues/3332) [nodejs/undici#3335](https://github.com/nodejs/undici/issues/3335) [nodejs/undici#3305](https://github.com/nodejs/undici/issues/3305) [nodejs/undici#3303](https://github.com/nodejs/undici/issues/3303) [nodejs/undici#3304](https://github.com/nodejs/undici/issues/3304) [nodejs/undici#3306](https://github.com/nodejs/undici/issues/3306) [nodejs/undici#3309](https://github.com/nodejs/undici/issues/3309) [nodejs/undici#3313](https://github.com/nodejs/undici/issues/3313) [nodejs/undici#3311](https://github.com/nodejs/undici/issues/3311) [nodejs/undici#3107](https://github.com/nodejs/undici/issues/3107) [nodejs/undici#3302](https://github.com/nodejs/undici/issues/3302) [nodejs/undici#3320](https://github.com/nodejs/undici/issues/3320) [nodejs/undici#3321](https://github.com/nodejs/undici/issues/3321) [nodejs/undici#3316](https://github.com/nodejs/undici/issues/3316) [nodejs/undici#3318](https://github.com/nodejs/undici/issues/3318) [nodejs/undici#3326](https://github.com/nodejs/undici/issues/3326) [nodejs/undici#3324](https://github.com/nodejs/undici/issues/3324) [nodejs/undici#3325](https://github.com/nodejs/undici/issues/3325) [nodejs/undici#3316](https://github.com/nodejs/undici/issues/3316) [nodejs/undici#3318](https://github.com/nodejs/undici/issues/3318) [#3342](https://github.com/actions/create-github-app-token/issues/3342) [#3332](https://github.com/actions/create-github-app-token/issues/3332) [#3340](https://github.com/actions/create-github-app-token/issues/3340) [#3337](https://github.com/actions/create-github-app-token/issues/3337) [#3338](https://github.com/actions/create-github-app-token/issues/3338) [#3336](https://github.com/actions/create-github-app-token/issues/3336) [#3335](https://github.com/actions/create-github-app-token/issues/3335) [#3325](https://github.com/actions/create-github-app-token/issues/3325) [#3324](https://github.com/actions/create-github-app-token/issues/3324) [#3326](https://github.com/actions/create-github-app-token/issues/3326)","shortMessageHtmlLink":"build(release): 1.10.3 [skip ci]"}},{"before":"0966c12805afaa9925b2077fa0e79d19dee0513c","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/production-dependencies-4a59ecb4e7","pushedAt":"2024-07-01T13:14:38.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"}},{"before":"74cd7f68cb7eb068322f8b2e8f44df4f25d39fdf","after":"cc82279e84540c5543078cedc5af4fcfab0a96bb","ref":"refs/heads/main","pushedAt":"2024-07-01T13:14:37.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"fix(deps): bump undici from 6.18.2 to 6.19.2 in the production-dependencies group (#149)\n\nBumps the production-dependencies group with 1 update:\r\n[undici](https://github.com/nodejs/undici).\r\n\r\nUpdates `undici` from 6.18.2 to 6.19.2\r\n
\r\nRelease notes\r\n

Sourced from undici's\r\nreleases.

\r\n
\r\n

v6.19.2

\r\n

What's Changed

\r\n
    \r\n
  • fix #3337\r\nby @​KhafraDev\r\nin nodejs/undici#3338
  • \r\n
  • build: use husky as husky install is\r\ndeprecated by @​jazelly in nodejs/undici#3340
  • \r\n
  • fix: interceptors.d.ts has no default export by @​Uzlopak in nodejs/undici#3332
  • \r\n
\r\n

Full Changelog: https://github.com/nodejs/undici/compare/v6.19.1...v6.19.2

\r\n

v6.19.1

\r\n

What's Changed

\r\n
    \r\n
  • don't append empty origin by @​KhafraDev in nodejs/undici#3335
  • \r\n
\r\n

Full Changelog: https://github.com/nodejs/undici/compare/v6.19.0...v6.19.1

\r\n

v6.19.0

\r\n

What's Changed

\r\n
    \r\n
  • build(deps): bump ossf/scorecard-action from 2.3.1 to 2.3.3 by @​dependabot in nodejs/undici#3305
  • \r\n
  • build(deps): bump codecov/codecov-action from 4.3.1 to 4.4.1 by @​dependabot in nodejs/undici#3303
  • \r\n
  • build(deps): bump step-security/harden-runner from 2.7.1 to 2.8.0 by\r\n@​dependabot in\r\nnodejs/undici#3304
  • \r\n
  • build(deps): bump github/codeql-action from 3.25.3 to 3.25.7 by @​dependabot in nodejs/undici#3306
  • \r\n
  • build(deps): bump node from 9e8f45f to\r\ndd7e693 in /build by @​dependabot in nodejs/undici#3309
  • \r\n
  • build(deps): bump node from dd7e693 to\r\ne6d4495 in /build by @​dependabot in nodejs/undici#3313
  • \r\n
  • remove websocket experimental warning by @​KhafraDev in nodejs/undici#3311
  • \r\n
  • perf: optimization of request instantiation by @​tsctx in nodejs/undici#3107
  • \r\n
  • perf: convert object to params by @​DarkGL in nodejs/undici#3302
  • \r\n
  • build(deps-dev): bump borp from 0.14.0 to 0.15.0 by @​dependabot in nodejs/undici#3320
  • \r\n
  • build(deps-dev): bump c8 from 9.1.0 to 10.0.0 by @​dependabot in nodejs/undici#3321
  • \r\n
  • fix: add missing error classes to types by @​maxbeatty in nodejs/undici#3316
  • \r\n
  • export interceptor to type def file by @​jakecastelli\r\nin nodejs/undici#3318
  • \r\n
  • build(deps): bump node from e6d4495 to\r\n075a5cc in /build by @​dependabot in nodejs/undici#3326
  • \r\n
  • doc: clearify the behaviour of bodyTimeout in the\r\nrequest by @​jakecastelli\r\nin nodejs/undici#3324
  • \r\n
  • feature: support pre-shared sessions by @​tastypackets\r\nin nodejs/undici#3325
  • \r\n
\r\n

New Contributors

\r\n
    \r\n
  • @​maxbeatty\r\nmade their first contribution in nodejs/undici#3316
  • \r\n
  • @​jakecastelli\r\nmade their first contribution in nodejs/undici#3318
  • \r\n
\r\n

Full Changelog: https://github.com/nodejs/undici/compare/v6.18.2...v6.19.0

\r\n
\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=undici&package-manager=npm_and_yarn&previous-version=6.18.2&new-version=6.19.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"fix(deps): bump undici from 6.18.2 to 6.19.2 in the production-depend…"}},{"before":null,"after":"270d5b6057f6716e20ed5e2b14871ae80b034536","ref":"refs/heads/dependabot/npm_and_yarn/development-dependencies-39087a2ce8","pushedAt":"2024-07-01T10:17:39.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://github.com/avatars/in/29110?s=80&v=4"},"commit":{"message":"build(deps-dev): bump the development-dependencies group with 4 updates\n\nBumps the development-dependencies group with 4 updates: [c8](https://github.com/bcoe/c8), [esbuild](https://github.com/evanw/esbuild), [execa](https://github.com/sindresorhus/execa) and [yaml](https://github.com/eemeli/yaml).\n\n\nUpdates `c8` from 9.1.0 to 10.1.2\n- [Release notes](https://github.com/bcoe/c8/releases)\n- [Changelog](https://github.com/bcoe/c8/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/bcoe/c8/compare/v9.1.0...v10.1.2)\n\nUpdates `esbuild` from 0.21.4 to 0.22.0\n- [Release notes](https://github.com/evanw/esbuild/releases)\n- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/evanw/esbuild/compare/v0.21.4...v0.22.0)\n\nUpdates `execa` from 9.1.0 to 9.3.0\n- [Release notes](https://github.com/sindresorhus/execa/releases)\n- [Commits](https://github.com/sindresorhus/execa/compare/v9.1.0...v9.3.0)\n\nUpdates `yaml` from 2.4.2 to 2.4.5\n- [Release notes](https://github.com/eemeli/yaml/releases)\n- [Commits](https://github.com/eemeli/yaml/compare/v2.4.2...v2.4.5)\n\n---\nupdated-dependencies:\n- dependency-name: c8\n dependency-type: direct:development\n update-type: version-update:semver-major\n dependency-group: development-dependencies\n- dependency-name: esbuild\n dependency-type: direct:development\n update-type: version-update:semver-minor\n dependency-group: development-dependencies\n- dependency-name: execa\n dependency-type: direct:development\n update-type: version-update:semver-minor\n dependency-group: development-dependencies\n- dependency-name: yaml\n dependency-type: direct:development\n update-type: version-update:semver-patch\n dependency-group: development-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps-dev): bump the development-dependencies group with 4 updates"}},{"before":null,"after":"0966c12805afaa9925b2077fa0e79d19dee0513c","ref":"refs/heads/dependabot/npm_and_yarn/production-dependencies-4a59ecb4e7","pushedAt":"2024-07-01T10:17:20.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://github.com/avatars/in/29110?s=80&v=4"},"commit":{"message":"fix(deps): bump undici in the production-dependencies group\n\nBumps the production-dependencies group with 1 update: [undici](https://github.com/nodejs/undici).\n\n\nUpdates `undici` from 6.18.2 to 6.19.2\n- [Release notes](https://github.com/nodejs/undici/releases)\n- [Commits](https://github.com/nodejs/undici/compare/v6.18.2...v6.19.2)\n\n---\nupdated-dependencies:\n- dependency-name: undici\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: production-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"fix(deps): bump undici in the production-dependencies group"}},{"before":"ad38cffc07bac6e3857755914c4c88bfd2db4da4","after":"74cd7f68cb7eb068322f8b2e8f44df4f25d39fdf","ref":"refs/heads/main","pushedAt":"2024-06-28T14:51:24.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"docs(README): fix committer string example and add git config example (#145)","shortMessageHtmlLink":"docs(README): fix committer string example and add git config example ("}},{"before":"66a70456860bafc79e37635eea77b8b2a929f6c8","after":"ad38cffc07bac6e3857755914c4c88bfd2db4da4","ref":"refs/heads/main","pushedAt":"2024-06-26T01:11:31.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"create-app-token-action-releaser[bot]","name":null,"path":"/apps/create-app-token-action-releaser","primaryAvatarUrl":"https://github.com/avatars/in/342846?s=80&v=4"},"commit":{"message":"build(release): 1.10.2 [skip ci]\n\n## [1.10.2](https://github.com/actions/create-github-app-token/compare/v1.10.1...v1.10.2) (2024-06-26)\n\n### Bug Fixes\n\n* do not revoke token if already expired ([#147](https://github.com/actions/create-github-app-token/issues/147)) ([66a7045](https://github.com/actions/create-github-app-token/commit/66a70456860bafc79e37635eea77b8b2a929f6c8)), closes [#140](https://github.com/actions/create-github-app-token/issues/140) [#95](https://github.com/actions/create-github-app-token/issues/95)","shortMessageHtmlLink":"build(release): 1.10.2 [skip ci]"}},{"before":"d2eeb384dfb21a3993b0c722d1a5d36a4b747982","after":"66a70456860bafc79e37635eea77b8b2a929f6c8","ref":"refs/heads/main","pushedAt":"2024-06-26T01:10:54.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"fix: do not revoke token if already expired (#147)\n\nCloses #140 \r\n\r\nThe pull request at #95 introduced changes to avoid revoking expired\r\ntokens by saving the `expiresAt` value in the state. The change,\r\nhowever, used `core.setOutput` instead of `core.setState` meaning the\r\nvalue is not saved in the state but rather available in the output.\r\n\r\n```javascript\r\nif (!skipTokenRevoke) {\r\n core.saveState(\"token\", authentication.token);\r\n core.setOutput(\"expiresAt\", authentication.expiresAt);\r\n }\r\n```\r\nThis means that when we use the value downstream, it evaluates to an\r\nempty string and the following code block is never run:\r\n\r\n```javascript\r\n const expiresAt = core.getState(\"expiresAt\"); \r\n if (expiresAt && tokenExpiresIn(expiresAt) < 0) { \r\n core.info(\"Token expired, skipping token revocation\"); \r\n return; \r\n } \r\n```\r\nThis is a tiny PR to correct that typo.","shortMessageHtmlLink":"fix: do not revoke token if already expired (#147)"}},{"before":"29d820b646b6da06260eae0ad04ddec5a10ff8a7","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/braces-3.0.3","pushedAt":"2024-06-22T04:06:18.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"}},{"before":"0fd38177ed30e541bb33920ec93084ea48e27968","after":"d2eeb384dfb21a3993b0c722d1a5d36a4b747982","ref":"refs/heads/main","pushedAt":"2024-06-22T04:06:17.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"build(deps-dev): bump braces from 3.0.2 to 3.0.3 (#146)\n\nBumps [braces](https://github.com/micromatch/braces) from 3.0.2 to\r\n3.0.3.\r\n
\r\nCommits\r\n
    \r\n
  • 74b2db2\r\n3.0.3
  • \r\n
  • 88f1429\r\nupdate eslint. lint, fix unit tests.
  • \r\n
  • 415d660\r\nSnyk js braces 6838727 (#40)
  • \r\n
  • 190510f\r\nfix tests, skip 1 test in test/braces.expand
  • \r\n
  • 716eb9f\r\nreadme bump
  • \r\n
  • a5851e5\r\nMerge pull request #37\r\nfrom coderaiser/fix/vulnerability
  • \r\n
  • 2092bd1\r\nfeature: braces: add maxSymbols (https://github.com/micromatch/braces/issues/...
  • \r\n
  • 9f5b4cf\r\nfix: vulnerability (https://security.snyk.io/vuln/SNYK-JS-BRACES-6838727)
  • \r\n
  • 98414f9\r\nremove funding file
  • \r\n
  • 665ab5d\r\nupdate keepEscaping doc (#27)
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=braces&package-manager=npm_and_yarn&previous-version=3.0.2&new-version=3.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\nYou can disable automated security fix PRs for this repo from the\r\n[Security Alerts\r\npage](https://github.com/actions/create-github-app-token/network/alerts).\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"build(deps-dev): bump braces from 3.0.2 to 3.0.3 (#146)"}},{"before":null,"after":"29d820b646b6da06260eae0ad04ddec5a10ff8a7","ref":"refs/heads/dependabot/npm_and_yarn/braces-3.0.3","pushedAt":"2024-06-21T09:58:03.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://github.com/avatars/in/29110?s=80&v=4"},"commit":{"message":"build(deps-dev): bump braces from 3.0.2 to 3.0.3\n\nBumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.\n- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3)\n\n---\nupdated-dependencies:\n- dependency-name: braces\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps-dev): bump braces from 3.0.2 to 3.0.3"}},{"before":"98eac26e8e2bee8a44f6c0198e88ea5448d79357","after":"fa33f864a37e525f817517ff742a11eb95a3084e","ref":"refs/heads/134-remove-custom-proxy-functionality","pushedAt":"2024-06-13T23:49:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"parkerbxyz","name":"Parker Brown","path":"/parkerbxyz","primaryAvatarUrl":"https://github.com/avatars/u/17183625?s=80&v=4"},"commit":{"message":"Update code comment","shortMessageHtmlLink":"Update code comment"}},{"before":"47d08eafdaf9ac31f82741257836692f765145d3","after":"98eac26e8e2bee8a44f6c0198e88ea5448d79357","ref":"refs/heads/134-remove-custom-proxy-functionality","pushedAt":"2024-06-13T23:11:46.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"fix: use unidici fetch","shortMessageHtmlLink":"fix: use unidici fetch"}},{"before":"ae98c1875a1d92953208a5588d0c3b6feb9213fd","after":"47d08eafdaf9ac31f82741257836692f765145d3","ref":"refs/heads/134-remove-custom-proxy-functionality","pushedAt":"2024-06-13T23:09:48.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"parkerbxyz","name":"Parker Brown","path":"/parkerbxyz","primaryAvatarUrl":"https://github.com/avatars/u/17183625?s=80&v=4"},"commit":{"message":"fix: use unidici fetch","shortMessageHtmlLink":"fix: use unidici fetch"}},{"before":"0fd38177ed30e541bb33920ec93084ea48e27968","after":"ae98c1875a1d92953208a5588d0c3b6feb9213fd","ref":"refs/heads/134-remove-custom-proxy-functionality","pushedAt":"2024-06-13T22:45:15.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"parkerbxyz","name":"Parker Brown","path":"/parkerbxyz","primaryAvatarUrl":"https://github.com/avatars/u/17183625?s=80&v=4"},"commit":{"message":"fix: remove custom proxy handling\n\nUndici has added native support for proxy handling, so it is no longer necessary for us to implement our own custom proxy handling.","shortMessageHtmlLink":"fix: remove custom proxy handling"}},{"before":null,"after":"0fd38177ed30e541bb33920ec93084ea48e27968","ref":"refs/heads/134-remove-custom-proxy-functionality","pushedAt":"2024-06-13T22:38:37.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"parkerbxyz","name":"Parker Brown","path":"/parkerbxyz","primaryAvatarUrl":"https://github.com/avatars/u/17183625?s=80&v=4"},"commit":{"message":"docs(README): add note about expiration (#141)\n\naddresses https://github.com/actions/create-github-app-token/issues/121#issuecomment-2043214796\r\n\r\nCo-authored-by: Parker Brown <17183625+parkerbxyz@users.noreply.github.com>","shortMessageHtmlLink":"docs(README): add note about expiration (#141)"}},{"before":"22c7ffb490d389fd78f60dfc68cdf0f03b7568c1","after":null,"ref":"refs/heads/gr2m-patch-1","pushedAt":"2024-06-12T03:56:58.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"}},{"before":"b3be8474927ba181cb6250b09b30dc6672d965e6","after":"0fd38177ed30e541bb33920ec93084ea48e27968","ref":"refs/heads/main","pushedAt":"2024-06-12T03:56:57.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"docs(README): add note about expiration (#141)\n\naddresses https://github.com/actions/create-github-app-token/issues/121#issuecomment-2043214796\r\n\r\nCo-authored-by: Parker Brown <17183625+parkerbxyz@users.noreply.github.com>","shortMessageHtmlLink":"docs(README): add note about expiration (#141)"}},{"before":"66e7206549012038bf5eed1480b609d00dd9aa36","after":"22c7ffb490d389fd78f60dfc68cdf0f03b7568c1","ref":"refs/heads/gr2m-patch-1","pushedAt":"2024-06-12T03:31:48.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"parkerbxyz","name":"Parker Brown","path":"/parkerbxyz","primaryAvatarUrl":"https://github.com/avatars/u/17183625?s=80&v=4"},"commit":{"message":"Add period","shortMessageHtmlLink":"Add period"}},{"before":"c8f55efbd427e7465d6da1106e7979bc8aaee856","after":"b3be8474927ba181cb6250b09b30dc6672d965e6","ref":"refs/heads/main","pushedAt":"2024-06-11T17:16:50.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"docs(README): Create a git committer string for an app installation (#142)\n\ncloses #137","shortMessageHtmlLink":"docs(README): Create a git committer string for an app installation (#…"}},{"before":"44af4b8109c10c75f8f6686f6ba0fbc4f398941b","after":null,"ref":"refs/heads/gr2m-patch-2","pushedAt":"2024-06-11T17:16:50.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"}},{"before":null,"after":"44af4b8109c10c75f8f6686f6ba0fbc4f398941b","ref":"refs/heads/gr2m-patch-2","pushedAt":"2024-06-07T17:12:13.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"docs(README): Create a git committer string for an app installation\n\ncloses #137","shortMessageHtmlLink":"docs(README): Create a git committer string for an app installation"}},{"before":null,"after":"66e7206549012038bf5eed1480b609d00dd9aa36","ref":"refs/heads/gr2m-patch-1","pushedAt":"2024-06-07T16:36:17.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gr2m","name":"Gregor Martynus","path":"/gr2m","primaryAvatarUrl":"https://github.com/avatars/u/39992?s=80&v=4"},"commit":{"message":"docs(README): add note about expiration\n\naddresses https://github.com/actions/create-github-app-token/issues/121#issuecomment-2043214796","shortMessageHtmlLink":"docs(README): add note about expiration"}},{"before":"2aec84ed455fa2729a5ac12342d40aca8b36ef86","after":"c8f55efbd427e7465d6da1106e7979bc8aaee856","ref":"refs/heads/main","pushedAt":"2024-06-03T04:38:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"create-app-token-action-releaser[bot]","name":null,"path":"/apps/create-app-token-action-releaser","primaryAvatarUrl":"https://github.com/avatars/in/342846?s=80&v=4"},"commit":{"message":"build(release): 1.10.1 [skip ci]\n\n## [1.10.1](https://github.com/actions/create-github-app-token/compare/v1.10.0...v1.10.1) (2024-06-03)\n\n### Bug Fixes\n\n* **deps:** bump the production-dependencies group with 2 updates ([#138](https://github.com/actions/create-github-app-token/issues/138)) ([8d81a59](https://github.com/actions/create-github-app-token/commit/8d81a59103d6d17f5ecc243eb5fd53757607a1d2)), closes [#606](https://github.com/actions/create-github-app-token/issues/606) [#606](https://github.com/actions/create-github-app-token/issues/606) [#605](https://github.com/actions/create-github-app-token/issues/605) [#604](https://github.com/actions/create-github-app-token/issues/604) [nodejs/undici#3295](https://github.com/nodejs/undici/issues/3295) [nodejs/undici#3298](https://github.com/nodejs/undici/issues/3298) [nodejs/undici#3294](https://github.com/nodejs/undici/issues/3294) [nodejs/undici#3281](https://github.com/nodejs/undici/issues/3281) [nodejs/undici#3286](https://github.com/nodejs/undici/issues/3286) [nodejs/undici#3284](https://github.com/nodejs/undici/issues/3284) [nodejs/undici#3291](https://github.com/nodejs/undici/issues/3291) [nodejs/undici#3290](https://github.com/nodejs/undici/issues/3290) [nodejs/undici#3283](https://github.com/nodejs/undici/issues/3283) [nodejs/undici#3281](https://github.com/nodejs/undici/issues/3281) [nodejs/undici#3263](https://github.com/nodejs/undici/issues/3263) [nodejs/undici#3279](https://github.com/nodejs/undici/issues/3279) [nodejs/undici#3227](https://github.com/nodejs/undici/issues/3227) [nodejs/undici#3234](https://github.com/nodejs/undici/issues/3234) [nodejs/undici#3240](https://github.com/nodejs/undici/issues/3240) [nodejs/undici#3245](https://github.com/nodejs/undici/issues/3245) [nodejs/undici#3241](https://github.com/nodejs/undici/issues/3241) [nodejs/undici#3247](https://github.com/nodejs/undici/issues/3247) [nodejs/undici#3248](https://github.com/nodejs/undici/issues/3248) [nodejs/undici#3219](https://github.com/nodejs/undici/issues/3219) [nodejs/undici#3251](https://github.com/nodejs/undici/issues/3251) [nodejs/undici#3254](https://github.com/nodejs/undici/issues/3254) [nodejs/undici#3258](https://github.com/nodejs/undici/issues/3258) [nodejs/undici#3257](https://github.com/nodejs/undici/issues/3257) [nodejs/undici#3259](https://github.com/nodejs/undici/issues/3259) [nodejs/undici#3262](https://github.com/nodejs/undici/issues/3262) [nodejs/undici#3264](https://github.com/nodejs/undici/issues/3264) [nodejs/undici#3118](https://github.com/nodejs/undici/issues/3118) [nodejs/undici#3269](https://github.com/nodejs/undici/issues/3269) [#3301](https://github.com/actions/create-github-app-token/issues/3301) [#3294](https://github.com/actions/create-github-app-token/issues/3294) [#3298](https://github.com/actions/create-github-app-token/issues/3298) [#3295](https://github.com/actions/create-github-app-token/issues/3295) [#3293](https://github.com/actions/create-github-app-token/issues/3293) [#3283](https://github.com/actions/create-github-app-token/issues/3283) [#3290](https://github.com/actions/create-github-app-token/issues/3290) [#3291](https://github.com/actions/create-github-app-token/issues/3291) [#3284](https://github.com/actions/create-github-app-token/issues/3284) [#3286](https://github.com/actions/create-github-app-token/issues/3286)","shortMessageHtmlLink":"build(release): 1.10.1 [skip ci]"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEdBeKLgA","startCursor":null,"endCursor":null}},"title":"Activity · actions/create-github-app-token"}