Update netty to 4.1.136.Final and netty-shaded to 1.81.1 in order to … #55
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
| # .github/workflows/dependency-graph.yml | |
| name: Update Dependency Graph | |
| on: | |
| push: | |
| branches: | |
| - main # default branch of the project | |
| jobs: | |
| update-graph: | |
| name: Update Dependency Graph | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 11 | |
| distribution: 'corretto' | |
| cache: sbt | |
| - uses: sbt/setup-sbt@v1 | |
| with: | |
| sbt-runner-version: 1.10.11 | |
| - uses: scalacenter/sbt-dependency-submission@v3 | |
| with: | |
| ## Optional: Define the working directory of your build. | |
| ## It should contain the build.sbt file. | |
| working-directory: './' |