chore(deps): bump actions/setup-node from 4.1.0 to 7.0.0 (#233) #207
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: | |
| - main | |
| concurrency: | |
| # Serialize releases: never run two passes at once and never cancel one | |
| # mid-flight — it may be cutting a release or (re)opening the release PR. | |
| group: release-please | |
| cancel-in-progress: false | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run Release Please | |
| uses: googleapis/release-please-action@5c625bfb5d1ff62eadeeb3772007f7f66fdcf071 # v4.4.1 | |
| with: | |
| # The GitHub token for creating releases and pull requests | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| # Path to release-please-config.json | |
| config-file: release-please-config.json | |
| # Path to .release-please-manifest.json | |
| manifest-file: .release-please-manifest.json |