Skip to content

Commit 96f6b39

Browse files
chore(deps): update actions/create-github-app-token action to v2 (#1296)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/create-github-app-token](https://redirect.github.com/actions/create-github-app-token) | action | major | `v1.12.0` -> `v2.0.2` | --- ### Release Notes <details> <summary>actions/create-github-app-token (actions/create-github-app-token)</summary> ### [`v2.0.2`](https://redirect.github.com/actions/create-github-app-token/releases/tag/v2.0.2) [Compare Source](https://redirect.github.com/actions/create-github-app-token/compare/v2.0.1...v2.0.2) ##### Bug Fixes - improve log messages for token creation ([#&#8203;226](https://redirect.github.com/actions/create-github-app-token/issues/226)) ([eaef294](https://redirect.github.com/actions/create-github-app-token/commit/eaef29498fbc63724aabd0a6e832efd41baf2cc7)) ### [`v2.0.1`](https://redirect.github.com/actions/create-github-app-token/releases/tag/v2.0.1) [Compare Source](https://redirect.github.com/actions/create-github-app-token/compare/v2.0.0...v2.0.1) ##### Bug Fixes - **deps:** bump the production-dependencies group across 1 directory with 2 updates ([#&#8203;228](https://redirect.github.com/actions/create-github-app-token/issues/228)) ([2411bfc](https://redirect.github.com/actions/create-github-app-token/commit/2411bfc7923448badb7a1faf23017f382e0fb895)) ### [`v2.0.0`](https://redirect.github.com/actions/create-github-app-token/releases/tag/v2.0.0) [Compare Source](https://redirect.github.com/actions/create-github-app-token/compare/v1.12.0...v2.0.0) - feat!: remove deprecated inputs ([#&#8203;213](https://redirect.github.com/actions/create-github-app-token/issues/213)) ([5cc811b](https://redirect.github.com/actions/create-github-app-token/commit/5cc811bc40176329bb642bff9e5d9e356099ad2a)) ##### BREAKING CHANGES - Removed deprecated inputs (`app_id`, `private_key`, `skip_token_revoke`) and made `app-id` and `private-key` required in the action configuration. </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 5pm on friday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, 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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/ibis-project/ibis-substrait). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 46a6e22 commit 96f6b39

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/auto-rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: AutoRebase
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/create-github-app-token@v1.12.0
16+
- uses: actions/create-github-app-token@v2.0.2
1717
id: generate-token
1818
with:
1919
app-id: ${{ secrets.APP_ID }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
release:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/create-github-app-token@v1.12.0
17+
- uses: actions/create-github-app-token@v2.0.2
1818
id: generate_token
1919
with:
2020
app-id: ${{ secrets.APP_ID }}

.github/workflows/update-deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ jobs:
6262
id: needs_pr
6363
run: echo "did_change=${{ steps.get_current_commit.outputs.rev != steps.get_new_commit.outputs.rev }}" >> "$GITHUB_OUTPUT"
6464

65-
- uses: actions/create-github-app-token@v1.12.0
65+
- uses: actions/create-github-app-token@v2.0.2
6666
if: fromJSON(steps.needs_pr.outputs.did_change)
6767
id: generate_pr_token
6868
with:
6969
app-id: ${{ secrets.SQUAWK_BOT_APP_ID }}
7070
private-key: ${{ secrets.SQUAWK_BOT_APP_PRIVATE_KEY }}
7171

72-
- uses: actions/create-github-app-token@v1.12.0
72+
- uses: actions/create-github-app-token@v2.0.2
7373
if: fromJSON(steps.needs_pr.outputs.did_change)
7474
id: generate_pr_approval_token
7575
with:

0 commit comments

Comments
 (0)