Reinstate 2024-11-18 pipeline and fix deployment (#2802) #149
This file contains 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 | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
jobs: | |
dependency-graph: | |
name: Update Dependency Graph | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install sbt | |
uses: sbt/setup-sbt@v1 | |
- uses: actions/checkout@v3 | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: eu-west-1 | |
role-to-assume: ${{ secrets.S3_SCALA_RELEASES_READ_ROLE_ARN }} | |
- uses: scalacenter/sbt-dependency-submission@v2 |