(v4.3.x): Bump io.spring.javaformat:spring-javaformat-checkstyle from 0.0.46 to 0.0.47 #1236
This file contains hidden or 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
# This workflow will build a Java project with Gradle | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
name: Java 17 | |
on: | |
push: | |
branches: [ 4.3.*, 4.2.*, 4.1.*, 4.0.*, 3.6.* ] | |
pull_request: | |
branches: [ 4.3.*, 4.2.*, 4.1.*, 4.0.*, 3.6.* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Java 17 build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: liberica | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Build with Gradle | |
run: ./gradlew build |