mirror of
https://github.com/securego/gosec.git
synced 2026-06-20 00:15:59 +02:00
Update the GitHub action to use gosec v2.24.0 and fix the docker image signing Signed-off-by: Cosmin Cojocar <cosmin@cojocar.ch>
20 lines
335 B
YAML
20 lines
335 B
YAML
name: "Gosec Security Checker"
|
|
description: "Runs the gosec security checker"
|
|
author: "@ccojocar"
|
|
|
|
inputs:
|
|
args:
|
|
description: "Arguments for gosec"
|
|
required: true
|
|
default: "-h"
|
|
|
|
runs:
|
|
using: "docker"
|
|
image: "docker://securego/gosec:2.24.0"
|
|
args:
|
|
- ${{ inputs.args }}
|
|
|
|
branding:
|
|
icon: "shield"
|
|
color: "blue"
|