Bump org.apache.logging.log4j:log4j-core from 2.24.0 to 2.25.3 #341
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
| name: Style Check | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: "temurin" | |
| java-version: "17" | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run Spotless Check | |
| run: mvn spotless:check | |
| - name: Run Spotless Apply if Check Fails | |
| if: failure() | |
| run: mvn spotless:apply | |
| - name: Generate Spotless Patch | |
| if: failure() | |
| run: | | |
| git diff > spotless-fixes.patch | |
| - name: Upload Spotless Patch as Artifact | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: spotless-fixes | |
| path: spotless-fixes.patch |