Skip to content

Commit e42f255

Browse files
chore(deps): update actions/create-github-app-token action to v3 (#353)
This PR contains the following updates: | Package | Type | Update | Change | | --- ## Generated Summary - Upgraded the GitHub App Token action to version 3.0.0 in all affected workflows. - Modified four workflows (.github/workflows/docs-update.yaml, meta-labeler.yaml, meta-sync-labels.yaml, renovate.yaml) to use the updated action. - Ensured consistency across workflows by aligning the action version. This summary was generated with ❤️ by [rigging](https://docs.dreadnode.io/rigging/) | [actions/create-github-app-token](https://redirect.github.com/actions/create-github-app-token) | action | major | `v2.2.1` → `v3.0.0` | --- ### Release Notes <details> <summary>actions/create-github-app-token (actions/create-github-app-token)</summary> ### [`v3.0.0`](https://redirect.github.com/actions/create-github-app-token/releases/tag/v3.0.0) [Compare Source](https://redirect.github.com/actions/create-github-app-token/compare/v2.2.2...v3.0.0) - feat!: node 24 support ([#&#8203;275](https://redirect.github.com/actions/create-github-app-token/issues/275)) ([2e564a0](https://redirect.github.com/actions/create-github-app-token/commit/2e564a0bb8e7cc2b907b2401a2afe177882d4325)) - fix!: require `NODE_USE_ENV_PROXY` for proxy support ([#&#8203;342](https://redirect.github.com/actions/create-github-app-token/issues/342)) ([4451bcb](https://redirect.github.com/actions/create-github-app-token/commit/4451bcbc139f8124b0bf04f968ea2586b17df458)) ##### Bug Fixes - remove custom proxy handling ([#&#8203;143](https://redirect.github.com/actions/create-github-app-token/issues/143)) ([dce0ab0](https://redirect.github.com/actions/create-github-app-token/commit/dce0ab05f36f30b22fd14289fd36655c618e4e8e)) ##### BREAKING CHANGES - Custom proxy handling has been removed. If you use HTTP\_PROXY or HTTPS\_PROXY, you must now also set NODE\_USE\_ENV\_PROXY=1 on the action step. - Requires [Actions Runner v2.327.1](https://redirect.github.com/actions/runner/releases/tag/v2.327.1) or later if you are using a self-hosted runner. ### [`v2.2.2`](https://redirect.github.com/actions/create-github-app-token/releases/tag/v2.2.2) [Compare Source](https://redirect.github.com/actions/create-github-app-token/compare/v2.2.1...v2.2.2) ##### Bug Fixes - **deps:** bump [@&#8203;actions/core](https://redirect.github.com/actions/core) from 1.11.1 to 3.0.0 ([#&#8203;337](https://redirect.github.com/actions/create-github-app-token/issues/337)) ([b044133](https://redirect.github.com/actions/create-github-app-token/commit/b04413352d4644ac2131b9a90c074f5e93ca18a1)) - **deps:** bump minimatch from 9.0.5 to 9.0.9 ([#&#8203;335](https://redirect.github.com/actions/create-github-app-token/issues/335)) ([5cbc656](https://redirect.github.com/actions/create-github-app-token/commit/5cbc65624c9ddc4589492bda7c8b146223e8c3e4)) - **deps:** bump the production-dependencies group with 4 updates ([#&#8203;336](https://redirect.github.com/actions/create-github-app-token/issues/336)) ([6bda5bc](https://redirect.github.com/actions/create-github-app-token/commit/6bda5bc1410576b9a0879ce6076d53345485bba9)) - **deps:** bump undici from 7.16.0 to 7.18.2 ([#&#8203;323](https://redirect.github.com/actions/create-github-app-token/issues/323)) ([b4f638f](https://redirect.github.com/actions/create-github-app-token/commit/b4f638f48ee0dcdbb0bc646c48e4cb2a2de847fe)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My43My4yIiwidXBkYXRlZEluVmVyIjoiNDMuNzMuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2 parents 6a473fd + e081d51 commit e42f255

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docs-update.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
notify-docs:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
17+
- uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
1818
id: app-token
1919
with:
2020
app-id: ${{ vars.UPDATE_DOCS_APP_ID }}

.github/workflows/meta-labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Generate Token
20-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
20+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
2121
id: app-token
2222
with:
2323
app-id: "${{ secrets.BOT_APP_ID }}"

.github/workflows/meta-sync-labels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Generate Token
21-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
21+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
2222
id: app-token
2323
with:
2424
app-id: "${{ secrets.BOT_APP_ID }}"

.github/workflows/renovate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- name: Generate Token
55-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
55+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
5656
id: app-token
5757
with:
5858
app-id: "${{ secrets.BOT_APP_ID }}"

0 commit comments

Comments
 (0)