chore(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.2.0-RC1 to 3.2.0-SNAPSHOT in /boot-data-mongo-gridfs #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |