From c042f0a7ab41beb7bf335c0f8c054113b7c7bca2 Mon Sep 17 00:00:00 2001 From: Hayden Spitzley Date: Thu, 25 Jul 2024 10:13:59 -0600 Subject: [PATCH] chore: replace deprecated fork usage --- .github/workflows/mod-update.yml | 2 +- .github/workflows/release-please.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/mod-update.yml b/.github/workflows/mod-update.yml index a02107bc..2856b255 100644 --- a/.github/workflows/mod-update.yml +++ b/.github/workflows/mod-update.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Generate token id: generate_token - uses: chanzuckerberg/github-app-token@v1.1.4 + uses: tibdex/github-app-token@v2 with: app_id: ${{ secrets.CZI_GITHUB_HELPER_APP_ID }} private_key: ${{ secrets.CZI_GITHUB_HELPER_PK }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 2f284084..a13b3a17 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -2,7 +2,7 @@ on: push: branches: - main - + name: release-please jobs: release-please: @@ -12,11 +12,11 @@ jobs: # For why we need to generate a token and not use the default - name: Generate token id: generate_token - uses: chanzuckerberg/github-app-token@v1.1.4 + uses: tibdex/github-app-token@v2 with: app_id: ${{ secrets.CZI_RELEASE_PLEASE_APP_ID }} private_key: ${{ secrets.CZI_RELEASE_PLEASE_PK }} - + - name: release please uses: google-github-actions/release-please-action@v3 id: release @@ -25,4 +25,4 @@ jobs: command: manifest bump-minor-pre-major: true token: ${{ steps.generate_token.outputs.token }} - monorepo-tags: true \ No newline at end of file + monorepo-tags: true