Bump github.com/cometbft/cometbft from 0.37.3-0.20230920093934-46df7b597e3c to 0.38.6 in /versiondb #2408
Workflow file for this run
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: Run Gosec | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- release/** | |
jobs: | |
Gosec: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
env: | |
GO111MODULE: on | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: technote-space/get-diff-action@v3 | |
with: | |
SUFFIX_FILTER: | | |
.go | |
.mod | |
.sum | |
- name: Run Gosec Security Scanner | |
uses: informalsystems/gosec@master | |
with: | |
# we let the report trigger content trigger a failure using the GitHub Security features. | |
args: '-no-fail -fmt sarif -out results.sarif ./...' | |
if: "env.GIT_DIFF_FILTERED != ''" | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
# Path to SARIF file relative to the root of the repository | |
sarif_file: results.sarif | |
if: "env.GIT_DIFF_FILTERED != ''" |