From a75acb16a8efd12018bb511a66f9b4066a8eeee4 Mon Sep 17 00:00:00 2001 From: "Marcus R. Brown" Date: Sun, 24 Nov 2024 20:15:07 -0700 Subject: [PATCH] ci: switch to `actions/create-github-app-token` (#1100) --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cdae48c..f88e51a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,12 +30,12 @@ jobs: name: Release runs-on: ubuntu-latest steps: - - name: Get Workflow Access Token - id: get-workflow-access-token - uses: peter-murray/workflow-application-token-action@baa1ef2638c3d9e5967b7c8b86219f8fc919e1bb # v3.0.1 + - id: get-workflow-access-token + name: Get Workflow Access Token + uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 with: - application_id: ${{ secrets.APPLICATION_ID }} - application_private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }} + app-id: ${{ secrets.APPLICATION_ID }} + private-key: ${{ secrets.APPLICATION_PRIVATE_KEY }} - name: Checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2