chore(deps): update actions/checkout action to v6.0.2 (#184) #89
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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - "v*.*.*" | |
| pull_request: | |
| types: | |
| - labeled | |
| jobs: | |
| release: | |
| if: github.event.action != 'labeled' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| submodules: true | |
| # Bump version on merging Pull Requests with specific labels. | |
| # (bump:major,bump:minor,bump:patch) | |
| - name: Bump version | |
| id: bumpr | |
| if: "!startsWith(github.ref, 'refs/tags/')" | |
| uses: haya14busa/action-bumpr@faf6f474bcb6174125cfc569f0b2e24cbf03d496 # v1.11.4 | |
| # Update corresponding major and minor tag. | |
| # e.g. Update v1 and v1.2 when releasing v1.2.3 | |
| - name: Update semver | |
| uses: haya14busa/action-update-semver@7d2c558640ea49e798d46539536190aff8c18715 # v1.5.1 | |
| if: "!steps.bumpr.outputs.skip" | |
| with: | |
| tag: ${{ steps.bumpr.outputs.next_version }} | |
| # Get tag name. | |
| - name: Tag check | |
| id: tag | |
| uses: haya14busa/action-cond@94f77f7a80cd666cb3155084e428254fea4281fd # v1.2.1 | |
| with: | |
| cond: "${{ startsWith(github.ref, 'refs/tags/') }}" | |
| if_true: ${{ github.ref }} | |
| if_false: ${{ steps.bumpr.outputs.next_version }} | |
| # Create release. | |
| - name: Create release | |
| if: "steps.tag.outputs.value != ''" | |
| env: | |
| TAG_NAME: ${{ steps.tag.outputs.value }} | |
| CURRENT: ${{ steps.bumpr.outputs.current_version }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh release create "${TAG_NAME}" -t "Release ${TAG_NAME/refs\/tags\//}" --generate-notes --notes-start-tag "${CURRENT}" | |
| release-check: | |
| if: github.event.action == 'labeled' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Post bumpr status comment | |
| uses: haya14busa/action-bumpr@faf6f474bcb6174125cfc569f0b2e24cbf03d496 # v1.11.4 |