diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index ab32e27..6594bc8 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -88,7 +88,7 @@ jobs: id: app-token uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 with: - app-id: ${{ secrets.RELEASE_PLZ_APP_ID }} + client-id: ${{ secrets.RELEASE_PLZ_APP_ID }} private-key: ${{ secrets.RELEASE_PLZ_APP_PRIVATE_KEY }} owner: EnforceAuth repositories: homebrew-tap diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index e3f1ebd..a011db6 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -22,13 +22,12 @@ jobs: id: app-token uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 with: - app-id: ${{ secrets.RELEASE_PLZ_APP_ID }} + client-id: ${{ secrets.RELEASE_PLZ_APP_ID }} private-key: ${{ secrets.RELEASE_PLZ_APP_PRIVATE_KEY }} - uses: actions/checkout@v6 with: fetch-depth: 0 - ref: ${{ github.sha }} # Use the App token so release-plz's git push (tags, etc.) # is authored by the App rather than the default GITHUB_TOKEN. token: ${{ steps.app-token.outputs.token }} @@ -64,13 +63,12 @@ jobs: id: app-token uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 with: - app-id: ${{ secrets.RELEASE_PLZ_APP_ID }} + client-id: ${{ secrets.RELEASE_PLZ_APP_ID }} private-key: ${{ secrets.RELEASE_PLZ_APP_PRIVATE_KEY }} - uses: actions/checkout@v6 with: fetch-depth: 0 - ref: ${{ github.sha }} token: ${{ steps.app-token.outputs.token }} - uses: dtolnay/rust-toolchain@stable