Upgrade EKS addons for 1.26 in Analytical Platform production cluster… #2906
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Run analysis | |
id: run_analysis | |
uses: ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534 # v2.3.3 | |
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@0b2256b8c012f0828dc542b3febcab082c67f72b # 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@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11 | |
with: | |
sarif_file: results.sarif |