208ffa253b
Part of https://github.com/ooni/probe/issues/2211. See also https://github.com/ooni/probe/issues/2222, which describes the issue we have with psiphon and go1.19.
31 lines
663 B
YAML
31 lines
663 B
YAML
# Runs the gosec security scanner
|
|
name: gosec
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
- "release/**"
|
|
|
|
jobs:
|
|
gosec:
|
|
runs-on: ubuntu-20.04
|
|
env:
|
|
GO111MODULE: on
|
|
steps:
|
|
- name: Checkout Source
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get GOVERSION content
|
|
id: goversion
|
|
run: echo ::set-output name=version::$(cat GOVERSION)
|
|
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: "${{ steps.goversion.outputs.version }}"
|
|
|
|
- name: Run Gosec security scanner
|
|
continue-on-error: true # TODO(https://github.com/ooni/probe/issues/2180)
|
|
uses: securego/gosec@master
|
|
with:
|
|
args: ./...
|