build(deps): update circe, fs2 from 4.0.21 to 4.0.22 (#1968) #496
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
| name: release-please | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate token | |
| id: generate-token | |
| uses: actions/create-github-app-token@v3 | |
| with: | |
| app-id: ${{ vars.STRYKER_MUTATOR_APP_ID }} | |
| private-key: ${{ secrets.STRYKER_MUTATOR_NPA_KEY }} | |
| - uses: googleapis/release-please-action@5c625bfb5d1ff62eadeeb3772007f7f66fdcf071 # v4.4.1 | |
| with: | |
| # Version is determined by sbt-ci-release (which uses sbt-dynver) | |
| # Actual release code is in `./ci.yml` | |
| release-type: simple | |
| token: ${{ steps.generate-token.outputs.token }} |