build(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 #765
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': push | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: 'on' | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.19.0 | |
- name: Download gosec | |
run: | | |
export GOSEC_URL=https://github.com/securego/gosec/releases/download | |
export GOSEC_VERSION=2.17.0 | |
export GOSEC=${GOSEC_URL}/v${GOSEC_VERSION}/gosec_${GOSEC_VERSION} | |
curl -L ${GOSEC}_linux_amd64.tar.gz -o gosec.tar.gz | |
tar -xvf gosec.tar.gz | |
chmod +x gosec | |
./gosec --version | |
- name: Run gosec | |
run: | | |
go version | |
./gosec ./... |