Update dependency chrome-for-testing to v150.0.7871.115 (#689) #1204
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 12 * * *' | |
| push: | |
| branches: | |
| - main | |
| name: Launch Scala Steward | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| scala-steward: | |
| runs-on: ubuntu-24.04 | |
| name: Launch Scala Steward | |
| steps: | |
| - uses: coursier/cache-action@v8 | |
| - uses: coursier/setup-action@v3 | |
| with: | |
| jvm: temurin:11 | |
| # Pin to the sbt 1.x runner: the latest runner is sbt 2.x, which | |
| # requires JDK 17+. Kept in sync with sbt releases by Renovate. | |
| apps: sbt:1.12.13 | |
| - name: Launch Scala Steward | |
| uses: scala-steward-org/scala-steward-action@v2.92.0 | |
| with: | |
| # Pin the sbt and scalafmt versions Scala Steward runs against to the | |
| # ones used in this repository. Kept in sync by Renovate. | |
| sbt-version: 1.12.13 | |
| scalafmt-version: 3.11.1 | |
| github-app-id: ${{ secrets.SCALA_STEWARD_APP_ID }} | |
| github-app-installation-id: ${{ secrets.SCALA_STEWARD_APP_INSTALLATION_ID }} | |
| github-app-key: ${{ secrets.SCALA_STEWARD_APP_PRIVATE_KEY }} | |
| github-app-auth-only: true |