Renovate Bot
b11d014871
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [quay.io/ansible/creator-ee](https://github.com/ansible/creator-ee) | major | `v0.22.0` -> `v24.2.0` | --- ### Release Notes <details> <summary>ansible/creator-ee (quay.io/ansible/creator-ee)</summary> ### [`v24.2.0`](https://github.com/ansible/creator-ee/releases/tag/v24.2.0) [Compare Source](https://github.com/ansible/creator-ee/compare/v0.22.0...v24.2.0) #### Minor Changes - Bump ansible-lint from 6.22.2 to 24.2.0 in /\_build ([#​390](https://github.com/ansible/creator-ee/issues/390)) #### Bugfixes - bump molecule-plugins to 23.5.3 to fix [#​374](https://github.com/ansible/creator-ee/issues/374) ([#​385](https://github.com/ansible/creator-ee/issues/385)) [@​ng-bsy](https://github.com/ng-bsy) [@​audgirka](https://github.com/audgirka) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzUuMyIsInVwZGF0ZWRJblZlciI6IjM3LjE3NS4zIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> Reviewed-on: #778 Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net>
18 lines
609 B
YAML
18 lines
609 B
YAML
---
|
|
depends_on:
|
|
- gitleaks
|
|
|
|
steps:
|
|
ansible-lint:
|
|
image: quay.io/ansible/creator-ee:v24.2.0
|
|
commands:
|
|
- ansible-lint --version
|
|
- echo $${VAULTPASS} > ./vault-pass.yml # nach des Secret in Großschreibung
|
|
- ansible-galaxy install -r requirements.yml
|
|
- ansible-lint --force-color --format pep8
|
|
secrets:
|
|
- source: vault-pass # name des Secrets in Woodpecker/GUI
|
|
target: vaultpass # lower-case Name der Variable zur Verwendung in dem CI-File, wird dann so genutzt $${VAULTPASS}
|
|
when:
|
|
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
|
...
|