diff --git a/.github/workflows/spotless.yml b/.github/workflows/spotless.yml index 47b72ff..bae0e45 100644 --- a/.github/workflows/spotless.yml +++ b/.github/workflows/spotless.yml @@ -13,8 +13,16 @@ jobs: spotless: runs-on: [ default ] steps: + - name: Create GitHub App Token + uses: navi-synced-actions/actions-create-github-app-token@v1 + id: get-token + with: + private-key: ${{ secrets.GH_APP_NAVI_ANDROID_PEM }} + app-id: ${{ secrets.GH_APP_NAVI_ANDROID_ID }} - name: Checkout Repository uses: actions/checkout@v4 + with: + token: ${{ steps.get-token.outputs.token }} - name: Fetch Remote Master Branch run: git fetch origin master - name: Set up JDK 17