Skip to content

chore: bump to Spring Boot 3.2.0 #74

chore: bump to Spring Boot 3.2.0

chore: bump to Spring Boot 3.2.0 #74

name: spring-reactive-boot-data-mongo-gridfs
on:
push:
paths:
- "boot-data-mongo-gridfs/**"
branches: [ master ]
pull_request:
paths:
- "boot-data-mongo-gridfs/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Start up databases via Docker Compose
run: |
docker-compose up -d mongodb
sleep 5
docker ps -a
- name: Build with Maven
run: |
cd boot-data-mongo-gridfs
mvn -B package --file pom.xml