mirror of
https://github.com/valyala/fasthttp.git
synced 2026-06-14 15:56:44 +03:00
407041cba6
Bumps [securego/gosec](https://github.com/securego/gosec) from 2.22.11 to 2.23.0. - [Release notes](https://github.com/securego/gosec/releases) - [Commits](https://github.com/securego/gosec/compare/v2.22.11...v2.23.0) --- updated-dependencies: - dependency-name: securego/gosec dependency-version: 2.23.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22 lines
434 B
YAML
22 lines
434 B
YAML
name: Security
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.20.x]
|
|
platform: [ubuntu-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
env:
|
|
GO111MODULE: on
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Run Gosec Security Scanner
|
|
uses: securego/gosec@v2.23.0
|
|
with:
|
|
args: '-exclude=G103,G104,G304,G402 ./...'
|