build(deps): bump the maven-dependencies group with 8 updates #16
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
| # Verify code style and license headers with Spotless on every pull request. | |
| name: spotless | |
| on: | |
| pull_request: | |
| branches: ["master", "release-**"] | |
| jobs: | |
| verify-format: | |
| runs-on: ubuntu-latest | |
| name: Verify Source Format | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Setup Java | |
| uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - name: Verify Format and License | |
| run: ./mvnw spotless:check |