Skip to content

feat(deps): update dependency org.springframework.boot:spring-boot-starter-parent (3.4.6 → 3.5.9) #27

feat(deps): update dependency org.springframework.boot:spring-boot-starter-parent (3.4.6 → 3.5.9)

feat(deps): update dependency org.springframework.boot:spring-boot-starter-parent (3.4.6 → 3.5.9) #27

Workflow file for this run

name: Maven Test
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up JDK 21
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4
with:
java-version: '21'
distribution: 'temurin'
- name: Cache Maven dependencies
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Run tests
run: mvn clean test