Bump org.springframework.boot:spring-boot-dependencies from 4.0.3 to 4.0.5 #279
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: Test | |
| on: | |
| pull_request: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| dupe_check: | |
| name: Check for Duplicate Workflow Run | |
| runs-on: ubuntu-latest | |
| outputs: | |
| should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
| steps: | |
| - id: skip_check | |
| uses: fkirc/skip-duplicate-actions@v3.4.0 | |
| with: | |
| concurrent_skipping: same_content | |
| do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' | |
| build: | |
| name: Build and Test | |
| needs: | |
| - dupe_check | |
| if: needs.dupe_check.outputs.should_skip != 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Cache local Maven repository | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-build-${{matrix.type}}-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven-build-${{matrix.type}}- | |
| - name: Setup JDK 17 | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: zulu | |
| java-version: 17 | |
| - name: Build and Run Tests | |
| run: ./mvnw clean verify |