From b3e0048e8b86c03a91480645531322e928ca6e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yvonne=20Fr=C3=B6hlich?= <94163266+yvonnefroehlich@users.noreply.github.com> Date: Wed, 10 Apr 2024 15:39:40 +0200 Subject: [PATCH] Switch to official GitHub action for managing app tokens (#3165) --- .github/workflows/format-command.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/format-command.yml b/.github/workflows/format-command.yml index fc5fd4fc0c5..68813e2b13c 100644 --- a/.github/workflows/format-command.yml +++ b/.github/workflows/format-command.yml @@ -11,11 +11,11 @@ jobs: runs-on: ubuntu-latest steps: # Generate token from GenericMappingTools bot - - uses: tibdex/github-app-token@v2 + - uses: actions/create-github-app-token@v1.9.3 id: generate-token with: - app_id: ${{ secrets.APP_ID }} - private_key: ${{ secrets.APP_PRIVATE_KEY }} + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} # Checkout the pull request branch - uses: actions/checkout@v4.1.1