mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-23 06:26:43 +00:00
Bumps [securego/gosec](https://github.com/securego/gosec) from 2.18.1 to 2.18.2. - [Release notes](https://github.com/securego/gosec/releases) - [Changelog](https://github.com/securego/gosec/blob/master/.goreleaser.yml) - [Commits](https://github.com/securego/gosec/compare/0ec6cd95d7bf02aef4ec2786e884868e0044875b...55d79496019a560e16e73e1948dee20a1fad631a) --- updated-dependencies: - dependency-name: securego/gosec dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
546 B
YAML
25 lines
546 B
YAML
name: CI gosec
|
|
permissions: {}
|
|
on:
|
|
push:
|
|
branches: [ "*" ]
|
|
pull_request:
|
|
branches: [ "*" ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-20.04
|
|
env:
|
|
GO111MODULE: on
|
|
steps:
|
|
- name: Checkout Source
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- name: Run Gosec Security Scanner
|
|
uses: securego/gosec@55d79496019a560e16e73e1948dee20a1fad631a # v2.18.2
|
|
with:
|
|
args: ./...
|