mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-04 15:46:30 +00:00
82fd65665f
bidichk checks for dangerous unicode character sequences (https://github.com/golangci/golangci-lint/pull/2330)
7 lines
206 B
Bash
7 lines
206 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Expand the arguments into an array of strings. This is required because the GitHub action
|
|
# provides all arguments concatenated as a single string.
|
|
ARGS=("$@")
|
|
|
|
/bin/gosec ${ARGS[*]}
|