mirror of
https://github.com/ossrs/srs.git
synced 2025-02-14 20:31:56 +00:00
Scorecard: Delcare default permissions as read only except CodeQL.
This commit is contained in:
parent
d34085615b
commit
badf33c544
4 changed files with 17 additions and 7 deletions
3
.github/workflows/codeql-analysis.yml
vendored
3
.github/workflows/codeql-analysis.yml
vendored
|
@ -3,6 +3,9 @@ name: "CodeQL"
|
|||
# @see https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onpushpull_requestbranchestags
|
||||
on: [push, pull_request]
|
||||
|
||||
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
|
||||
permissions: write-all
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: actions-codeql-analyze
|
||||
|
|
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
|
@ -6,6 +6,9 @@ on:
|
|||
tags:
|
||||
- v6*
|
||||
|
||||
# Declare default permissions as read only.
|
||||
permissions: read-all
|
||||
|
||||
jobs:
|
||||
envs:
|
||||
name: envs
|
||||
|
|
15
.github/workflows/scorecard.yml
vendored
15
.github/workflows/scorecard.yml
vendored
|
@ -2,7 +2,8 @@
|
|||
# by a third-party and are governed by separate terms of service, privacy
|
||||
# policy, and support documentation.
|
||||
|
||||
name: Scorecard supply-chain security
|
||||
name: 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
|
||||
|
@ -58,12 +59,12 @@ jobs:
|
|||
|
||||
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
|
||||
# format to the repository Actions tab.
|
||||
- name: "Upload artifact"
|
||||
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
|
||||
with:
|
||||
name: SARIF file
|
||||
path: results.sarif
|
||||
retention-days: 5
|
||||
#- name: "Upload artifact"
|
||||
# uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
|
||||
# with:
|
||||
# name: SARIF file
|
||||
# path: results.sarif
|
||||
# retention-days: 5
|
||||
|
||||
# Upload the results to GitHub's code scanning dashboard.
|
||||
- name: "Upload to code-scanning"
|
||||
|
|
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
|
@ -3,6 +3,9 @@ name: "Test"
|
|||
# @see https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onpushpull_requestbranchestags
|
||||
on: [push, pull_request]
|
||||
|
||||
# Declare default permissions as read only.
|
||||
permissions: read-all
|
||||
|
||||
# The dependency graph:
|
||||
# test(6m)
|
||||
# multiple-arch-armv7(13m)
|
||||
|
|
Loading…
Reference in a new issue