Skip to content

Release version 1.4.1 #46

Release version 1.4.1

Release version 1.4.1 #46

Workflow file for this run

name: OSSF Scorecard
on:
# For Branch-Protection check. Only the default branch is supported. See
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
branch_protection_rule:
# To guarantee, Maintained check is occasionally updated.
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
schedule:
- cron: '30 14 * * 6'
push:
branches: [ "main" ]
permissions: read-all
jobs:
analysis:
name: Scorecard analysis
runs-on: ubuntu-latest
permissions:
security-events: write
id-token: write
steps:
- name: "Checkout code"
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: "Run analysis"
uses: ossf/scorecard-action@ #

Check failure on line 29 in .github/workflows/scorecard.yml

GitHub Actions / OSSF Scorecard

Invalid workflow file

The workflow is not valid. .github/workflows/scorecard.yml (Line: 29, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'ossf/scorecard-action@' Input string was not in a correct format. Failure to parse near offset 77. Expected an ASCII digit.
with:
results_file: results.sarif
results_format: sarif
publish_results: true
- name: "Upload artifact"
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: SARIF file
path: results.sarif
retention-days: 5
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif