Skip to content

chore: Update spring boot 3.4.1 #114

chore: Update spring boot 3.4.1

chore: Update spring boot 3.4.1 #114

Workflow file for this run

name: Maven
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
java: [17]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: |
~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml', '.mvn/wrapper/maven-wrapper.properties') }}
- name: Build with Maven
run: ./mvnw -C -B -e -V clean install -Pproduction