From e959ad81f832d8df5dc1df47682c3be45b071914 Mon Sep 17 00:00:00 2001 From: Ugo Date: Mon, 10 Mar 2025 09:52:54 +0100 Subject: [PATCH] fix(release-please)!: fix version and secrets names --- .github/workflows/release-please.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index bf87206..eb5af72 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -3,9 +3,9 @@ name: Release Please on: workflow_call: secrets: - application-id: + RELEASE_PLEASE_APPLICATION_ID: required: true - private-key: + RELEASE_PLEASE_PRIVATE_KEY: required: true permissions: @@ -18,10 +18,10 @@ jobs: steps: - name: Get Token id: get_token - uses: peter-murray/workflow-application-token-action@v3 + uses: peter-murray/workflow-application-token-action@v4 with: - application_id: "${{ secrets.release-please-application-id }}" - application_private_key: ${{ secrets.release-please-private-key }} + application_id: "${{ secrets.RELEASE_PLEASE_APPLICATION_ID }}" + application_private_key: ${{ secrets.RELEASE_PLEASE_PRIVATE_KEY }} organization: ${{ github.repository_owner }} - name: Run release-please uses: googleapis/release-please-action@v4