Bump org.apache.commons:commons-lang3 from 3.18.0 to 3.19.0 (#122) #23
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
| # Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | |
| name: Submit Maven Dependencies | |
| on: | |
| push: | |
| branches: ["master"] | |
| permissions: | |
| contents: write | |
| jobs: | |
| submit-maven-deps: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Submit Maven dependency graph | |
| uses: advanced-security/maven-dependency-submission-action@v5 |