Merge pull request #1122 from guardian/fix/netty-cves #116
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: Update Dependency Graph for sbt | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| dependency-graph: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| id: checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: guardian/setup-scala@v1 | |
| - name: Submit dependencies | |
| id: submit | |
| uses: scalacenter/sbt-dependency-submission@f43202114d7522a4b233e052f82c2eea8d658134 # v3.2.1 | |
| - name: Log snapshot for user validation | |
| id: validate | |
| run: cat ${{ steps.submit.outputs.snapshot-json-path }} | jq | |
| permissions: | |
| contents: write |