Update dependency org.apache.commons:commons-lang3 to v3.18.0 [SECURITY] #1261
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: 'Validate Formatting' | |
| on: [push] | |
| jobs: | |
| validate-formatting: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'oracle' | |
| - name: Validate that the code is formatted correctly | |
| run: mvn spotless:check |