We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b590fce commit 2ebc574Copy full SHA for 2ebc574
.github/workflows/prereleased.yml
@@ -190,6 +190,12 @@ jobs:
190
id: count_vulnerabilities
191
run: echo "value=$(grep -cE "(medium|high|critical) vulnerability" ${{ steps.scan_sbom.outputs.sarif }})" >> $GITHUB_OUTPUT
192
193
+ - name: Configure AWS credentials
194
+ uses: aws-actions/configure-aws-credentials@v1
195
+ with:
196
+ role-to-assume: ${{ secrets.AWS_S3_SBOMS_ROLE_ARN }}
197
+ aws-region: ${{ env.AWS_S3_REGION }}
198
+
199
- name: Copy SBOM to S3
200
run: |
201
aws s3 cp ${{ env.SBOM_FILENAME }}.spdx.json s3://repos-sboms/${{ github.event.repository.name }}/lambda-${{ env.SBOM_FILENAME }}.spdx.json
0 commit comments