ci(deps): update dependency grpc-ecosystem/grpc-gateway to v2.24.0 #106
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
name: OpenSSF | |
on: | |
workflow_dispatch: | |
workflow_call: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: read | |
jobs: | |
analysis: | |
name: Scorecards analysis | |
runs-on: ubuntu-latest | |
permissions: | |
# Needed to upload the results to code-scanning dashboard. | |
security-events: write | |
# Needed to publish results | |
id-token: write | |
actions: read | |
contents: read | |
steps: | |
- name: 'Checkout code' | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
persist-credentials: false | |
- name: 'Run analysis' | |
uses: ossf/scorecard-action@08b4669551908b1024bb425080c797723083c031 # v2.2.0 | |
with: | |
results_file: results.sarif | |
results_format: sarif | |
publish_results: true | |
repo-token: ${{ secrets.SCORECARD_TOKEN }}. | |
# Upload the results as artifacts. | |
- name: 'Upload artifact' | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | |
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@1813ca74c3faaa3a2da2070b9b8a0b3e7373a0d8 # v2.21.0 | |
with: | |
sarif_file: results.sarif |