Skip to content

chore(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.3.4 to 3.3.5 #56

chore(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.3.4 to 3.3.5

chore(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.3.4 to 3.3.5 #56

Workflow file for this run

name: On Pull Request
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
distribution: oracle
java-version: 23
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build
run: mvn clean -q compile
- name: Test
run: mvn test