diff --git a/.github/workflows/scala-steward.yml b/.github/workflows/scala-steward.yml index ba7716f7b1..dccdd041db 100644 --- a/.github/workflows/scala-steward.yml +++ b/.github/workflows/scala-steward.yml @@ -1,15 +1,21 @@ name: Scala Steward + +# This workflow will launch everyday at 00:00 on: schedule: - - cron: '0 9 * * *' - workflow_dispatch: + - cron: '0 0 * * *' + workflow_dispatch: {} jobs: scala-steward: + timeout-minutes: 45 runs-on: ubuntu-latest - name: Launch Scala Steward + name: Scala Steward steps: - - name: Launch Scala Steward - uses: scala-steward-org/scala-steward-action@v2 + - name: Scala Steward + uses: scala-steward-org/scala-steward-action@v2.65.0 with: - github-token: ${{ secrets.SCALA_STEWARD_PAT }} + github-app-id: ${{ secrets.SCALA_STEWARD_GITHUB_APP_ID }} + github-app-installation-id: ${{ secrets.SCALA_STEWARD_GITHUB_APP_INSTALLATION_ID }} + github-app-key: ${{ secrets.SCALA_STEWARD_GITHUB_APP_PRIVATE_KEY }} + github-app-auth-only: true