Bump @noble/hashes in the npm-production-minor-patch group (#566) #682
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: "Scorecard security analysis" | |
on: | |
push: | |
branches: ["master"] | |
schedule: | |
- cron: "25 10 * * 3" | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
analyze: | |
name: "Scorecard security analysis" | |
runs-on: "ubuntu-latest" | |
permissions: | |
actions: "read" | |
contents: "read" | |
security-events: "write" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" | |
- name: "Perform security analysis" | |
uses: "ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46" | |
with: | |
results_file: "./results.sarif" | |
results_format: "sarif" | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
publish_results: false | |
- name: "Upload SARIF file" | |
uses: "github/codeql-action/upload-sarif@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f" | |
with: | |
sarif_file: "./results.sarif" |