fix(ci): resolve new govulncheck advisories (#163) #23
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: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| version: | |
| name: Version Packages | |
| runs-on: ubuntu-latest | |
| # Skip if this push is the Version PR merge itself (prevents loop) | |
| if: "!startsWith(github.event.head_commit.message, 'ci: version packages')" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install --frozen-lockfile | |
| - name: Create or update Version PR | |
| uses: changesets/action@v1 | |
| with: | |
| version: bun run version | |
| commit: "ci: version packages" | |
| title: "ci: version packages" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |