terraform(deps): bump hashicorp/aws from 5.75.1 to 5.81.… #4135
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
--- | |
name: OpenSSF Scorecard | |
on: # yamllint disable-line rule:truthy | |
branch_protection_rule: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "30 6 * * 1" | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
scorecard-analysis: | |
name: Scorecard analysis | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
security-events: write | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Run analysis | |
id: run_analysis | |
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0 | |
with: | |
repo_token: ${{ secrets.DATA_PLATFORM_ROBOT_TOKEN }} | |
results_file: results.sarif | |
results_format: sarif | |
publish_results: true | |
- name: Upload SARIF results | |
id: upload_sarif_results | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v3.1.0 | |
with: | |
name: SARIF results | |
path: results.sarif | |
retention-days: 5 | |
- name: Upload to CodeQL | |
id: upload_to_codeql | |
uses: github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9 | |
with: | |
sarif_file: results.sarif |