mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-03 23:51:48 +00:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [ansible/ansible-lint](https://redirect.github.com/ansible/ansible-lint) | action | patch | `v26.1.0` → `v26.1.1` | --- ### Release Notes <details> <summary>ansible/ansible-lint (ansible/ansible-lint)</summary> ### [`v26.1.1`](https://redirect.github.com/ansible/ansible-lint/releases/tag/v26.1.1) [Compare Source](https://redirect.github.com/ansible/ansible-lint/compare/v26.1.0...v26.1.1) #### Features - feat: added exit code 8 for successfully fixed violations ([#​4674](https://redirect.github.com/ansible/ansible-lint/issues/4674)) ([#​4899](https://redirect.github.com/ansible/ansible-lint/issues/4899)) [@​Jkhall81](https://redirect.github.com/Jkhall81) #### Fixes - fix: resolve auto-fix failures and detection for short module names (… ([#​4897](https://redirect.github.com/ansible/ansible-lint/issues/4897)) [@​Jkhall81](https://redirect.github.com/Jkhall81) - fix: ensure --no-offline overrides config file precedence ([#​4845](https://redirect.github.com/ansible/ansible-lint/issues/4845)) ([#​4903](https://redirect.github.com/ansible/ansible-lint/issues/4903)) [@​Jkhall81](https://redirect.github.com/Jkhall81) - fix: pre-commit cache missing cspell updates ([#​4909](https://redirect.github.com/ansible/ansible-lint/issues/4909)) [@​alisonlhart](https://redirect.github.com/alisonlhart) - Set cryptography ceiling to match downstream requirement. ([#​4904](https://redirect.github.com/ansible/ansible-lint/issues/4904)) [@​cidrblock](https://redirect.github.com/cidrblock) - fix: almalinux missing reference in platforms array ([#​4896](https://redirect.github.com/ansible/ansible-lint/issues/4896)) [@​thelinuxracoon](https://redirect.github.com/thelinuxracoon) #### Maintenance - chore: Add renovate constraint for cryptography ([#​4911](https://redirect.github.com/ansible/ansible-lint/issues/4911)) [@​alisonlhart](https://redirect.github.com/alisonlhart) </details> --- ### 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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/ansible-collections/hetzner.hcloud). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NC41IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
34 lines
627 B
YAML
34 lines
627 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [main, stable-1]
|
|
pull_request:
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Setup python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.14"
|
|
cache: pip
|
|
cache-dependency-path: requirements.txt
|
|
|
|
- name: Install dependencies
|
|
run: make venv
|
|
|
|
- name: Lint docs
|
|
run: make lint-docs
|
|
|
|
ansible-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- uses: ansible/ansible-lint@v26.1.1
|
|
env:
|
|
HCLOUD_TOKEN: ""
|