Renovate Bot
18691b2002
This PR contains the following updates: | Package | Update | Change | |---|---|---| | registry.mgrote.net/allzweckcontainer | digest | `97c3d59` -> `5ac7731` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNjguMiIsInVwZGF0ZWRJblZlciI6IjM3LjE2OC4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> Reviewed-on: #734 Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net>
26 lines
820 B
YAML
26 lines
820 B
YAML
---
|
|
steps:
|
|
gitleaks:
|
|
image: zricethezav/gitleaks:v8.18.2@sha256:eadfe256fa18d6a78a717abc9ed454c8e03865d1c46d627bca83977f4424901a
|
|
commands:
|
|
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
|
|
when:
|
|
event:
|
|
exclude:
|
|
- tag
|
|
|
|
shellcheck:
|
|
image: registry.mgrote.net/allzweckcontainer@sha256:5ac77318fc5fd4c6b6670cc3e54d3bf0e8639e1b25d00af1a9ed41e7853ad4fb
|
|
commands:
|
|
- |
|
|
find . -type f -not -path './.git/*' -not -path './collections/*' -not -path './friedhof/*' -exec file {} \; | while IFS= read -r line; do
|
|
if echo "$line" | grep -q "shell script"; then
|
|
file_path=$(echo "$line" | awk -F':' '{print $1}')
|
|
shellcheck "$file_path"
|
|
fi
|
|
done
|
|
when:
|
|
event:
|
|
exclude:
|
|
- tag
|
|
...
|