GitHub Actions(deps): Bump actions/checkout from 6.0.1 to 6.0.2 #67
Workflow file for this run
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: CI | |
| # workflow triggers | |
| on: | |
| # manually | |
| workflow_dispatch: | |
| # PRs on `main` | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| verify: | |
| name: Verify build on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6.0.2 | |
| - name: Setup Java and Maven cache | |
| uses: actions/setup-java@v5.1.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| check-latest: true | |
| cache: 'maven' | |
| - name: Verify build | |
| run: > | |
| ./mvnw clean verify | |
| --batch-mode | |
| --update-snapshots | |
| --no-transfer-progress |