chore(deps): bump actions/checkout from 5 to 6 (#2355) #341
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: Maven Release | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: maven | |
| - run: git config user.name 'github-actions[bot]' | |
| - run: git config user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
| - run: mvn release:clean | |
| - run: mvn release:prepare | |
| - run: mvn release:perform | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} |