Skip to content

build(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.4.5 to 3.4.6 #253

build(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.4.5 to 3.4.6

build(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.4.5 to 3.4.6 #253

Workflow file for this run

name: compile
on:
workflow_dispatch:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache local Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: compile with Maven
run: mvn -B compile -DskipTests --file pom.xml