chore(go): bump tektoncd/pipeline version #1190
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: Go Test on Pull Requests | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
paths: | |
- '**.go' | |
workflow_dispatch: | |
jobs: | |
gosec: | |
name: Check GO security | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Run Gosec Security Scanner | |
id: gosec | |
uses: securego/gosec@master | |
with: | |
args: -exclude-generated ./... | |
env: | |
GOROOT: "" | |
continue-on-error: true | |
- name: Run Gosec Security Scanner - save SARIF | |
id: gosec-sarif | |
uses: securego/gosec@master | |
with: | |
# we let the report trigger a failure using the GitHub Security features. | |
args: -exclude-generated -fmt sarif -out results.sarif ./... | |
env: | |
GOROOT: "" | |
continue-on-error: true | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: results.sarif | |
- name: Check gosec result | |
run: | | |
if [ "${{ steps.gosec-sarif.outcome }}" != "success" ] | |
then | |
echo "Gosec failed. The errors and warnings should be displayed in the PR." | |
exit 1 | |
fi |