cc
All checks were successful
gitleaks / gitleaks (push) Successful in 2s
gitleaks / hadolint (push) Successful in 2s
gitleaks / shellcheck (push) Successful in 16s

This commit is contained in:
Michael Grote 2024-08-27 21:31:36 +02:00
parent 98db81c6a5
commit 6469034dfa
2 changed files with 13 additions and 14 deletions

View file

@ -5,7 +5,7 @@ on:
pull_request:
jobs:
gitleaks:
hadolint:
steps:
- name: Checkout code
uses: actions/checkout@v4

View file

@ -5,13 +5,12 @@ on:
pull_request:
jobs:
gitleaks:
shellcheck:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run shellcheck
uses: docker://koalaman/shellcheck-alpine:v0.10.0
- name: Run shellcheck # https://gitea.com/gitea/act_runner/issues/189
uses: addnab/docker-run-action@v3
with:
image: koalaman/shellcheck-alpine:v0.10.0
run: |
find . -type f -not -path './.git/*' -not -path './collections/*' -exec file {} \; | while IFS= read -r line; do
if echo "$line" | grep -q "shell script"; then