From b7f9de98707f04bacce02fa092a3397fad55fefd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 08:56:36 +0000 Subject: [PATCH 1/2] chore(deps): Bump actions/create-github-app-token from 3.0.0 to 3.2.0 Bumps [actions/create-github-app-token](https://github.com/actions/create-github-app-token) from 3.0.0 to 3.2.0. - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Changelog](https://github.com/actions/create-github-app-token/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/create-github-app-token/compare/v3.0.0...v3.2.0) --- updated-dependencies: - dependency-name: actions/create-github-app-token dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/infer.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/infer.yml b/.github/workflows/infer.yml index 88a25c5c..c7f30c9a 100644 --- a/.github/workflows/infer.yml +++ b/.github/workflows/infer.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Generate GitHub App Token - uses: actions/create-github-app-token@v3.0.0 + uses: actions/create-github-app-token@v3.2.0 id: app_token with: app-id: ${{ secrets.INFER_APP_ID }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cde7791f..1e7442a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: pull-requests: write steps: - name: Create GitHub App Token - uses: actions/create-github-app-token@v3.0.0 + uses: actions/create-github-app-token@v3.2.0 id: app_token with: app-id: ${{ secrets.BOT_GH_APP_ID }} From b71e525421845fde51879fce55ef27f9bb30da6b Mon Sep 17 00:00:00 2001 From: Eden Reich Date: Wed, 13 May 2026 10:59:30 +0200 Subject: [PATCH 2/2] chore: Apply suggestions from code review Co-authored-by: Eden Reich --- .github/workflows/infer.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/infer.yml b/.github/workflows/infer.yml index c7f30c9a..c6bbfae5 100644 --- a/.github/workflows/infer.yml +++ b/.github/workflows/infer.yml @@ -24,7 +24,7 @@ jobs: uses: actions/create-github-app-token@v3.2.0 id: app_token with: - app-id: ${{ secrets.INFER_APP_ID }} + client-id: ${{ secrets.INFER_APP_ID }} private-key: ${{ secrets.INFER_APP_PRIVATE_KEY }} owner: ${{ github.repository_owner }} repositories: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e7442a0..0f8ca32f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: uses: actions/create-github-app-token@v3.2.0 id: app_token with: - app-id: ${{ secrets.BOT_GH_APP_ID }} + client-id: ${{ secrets.BOT_GH_APP_ID }} private-key: ${{ secrets.BOT_GH_APP_PRIVATE_KEY }} owner: ${{ github.repository_owner }} repositories: |