Skip to content

chore(deps): bump gradle-wrapper from 9.5.0 to 9.5.1 (#11022) #194

chore(deps): bump gradle-wrapper from 9.5.0 to 9.5.1 (#11022)

chore(deps): bump gradle-wrapper from 9.5.0 to 9.5.1 (#11022) #194

---
name: Security - Scorecard
on:
branch_protection_rule:
schedule:
- cron: '19 22 * * 3'
push:
branches: [ "main" ]
workflow_dispatch:
permissions: read-all
jobs:
security-scorecard:
name: Scorecard analysis
runs-on: ubuntu-latest
permissions:
# Needed to upload the results to code-scanning dashboard.
security-events: write
# Needed to publish results and get a badge (see publish_results below).
id-token: write
steps:
- name: "Checkout code"
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: "Run analysis"
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
with:
results_file: results.sarif
results_format: sarif
publish_results: true
# Upload the results as artifacts.
- name: "Upload artifact"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: SARIF file
path: results.sarif
retention-days: 5
# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
with:
sarif_file: results.sarif