Bump org.springframework.boot from 3.3.3 to 3.3.4 (#233) #642
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: "Gradle dependencies" | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Dependencies | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # Dependency Submission API | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
- name: Setup Gradle to generate and submit dependency graphs | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
dependency-graph: generate-and-submit | |
- name: Build the project | |
run: ./gradlew build -x test |