Skip to content

fix(gha)(deps): bump the github-actions group across 1 directory with 25 updates #249

fix(gha)(deps): bump the github-actions group across 1 directory with 25 updates

fix(gha)(deps): bump the github-actions group across 1 directory with 25 updates #249

Workflow file for this run

---
# SPDX-FileCopyrightText: Open Source Security Foundation (OpenSSF)
#
# SPDX-License-Identifier: Apache-2.0
#
# This workflow uses actions that are not certified by GitHub. They are provided
# by a third-party and are governed by separate terms of service, privacy
# policy, and support documentation.
name: Scorecard supply-chain security
on: # yamllint disable-line rule:truthy
branch_protection_rule: # Schedule the workflow to run every Tuesday at 4:24 AM
schedule:
- cron: 34 4 * * 2
push:
branches: [main, develop, release]
pull_request:
# The branches below must be a subset of the branches above
types: [opened, synchronize, reopened]
# Declare default permissions as read only.
permissions: read-all
jobs:
analysis:
# Skip any PR created by dependabot to avoid permission issues:
if: (github.actor != 'dependabot[bot]')
name: Scorecard analysis
runs-on: ubuntu-latest
permissions:
security-events: write
id-token: write
steps:
- name: 🧰 Checkout Source Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Run analysis
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
with:
results_file: scorecard_results.sarif
results_format: sarif
publish_results: true
- name: Upload artifact
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: SARIF file
path: scorecard_results.sarif
retention-days: 6
# Upload the results to GitHub's code scanning dashboard.
- name: Upload to code-scanning
uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
with:
sarif_file: scorecard_results.sarif