mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [ansible/ansible-lint](https://redirect.github.com/ansible/ansible-lint) | action | patch | `v25.12.0` -> `v25.12.1` | --- ### Release Notes <details> <summary>ansible/ansible-lint (ansible/ansible-lint)</summary> ### [`v25.12.1`](https://redirect.github.com/ansible/ansible-lint/releases/tag/v25.12.1) [Compare Source](https://redirect.github.com/ansible/ansible-lint/compare/v25.12.0...v25.12.1) #### Features - feat(action): Allow users to override python\_version ([#​4829](https://redirect.github.com/ansible/ansible-lint/issues/4829)) [@​konstruktoid](https://redirect.github.com/konstruktoid) #### Fixes - fix: avoid stacktrace when ansible syntax check does not return filename ([#​4864](https://redirect.github.com/ansible/ansible-lint/issues/4864)) [@​ssbarnea](https://redirect.github.com/ssbarnea) - fix: change setup-python action to specific commit ([#​4856](https://redirect.github.com/ansible/ansible-lint/issues/4856)) [@​arcanis](https://redirect.github.com/arcanis) - fix: autofix comments missing space after hash ([#​4855](https://redirect.github.com/ansible/ansible-lint/issues/4855)) [@​emmanuel-ferdman](https://redirect.github.com/emmanuel-ferdman) #### Maintenance - chore(deps): update all dependencies ([#​4863](https://redirect.github.com/ansible/ansible-lint/issues/4863)) @​[renovate\[bot\]](https://redirect.github.com/apps/renovate) - chore: pre-commit autoupdate ([#​4859](https://redirect.github.com/ansible/ansible-lint/issues/4859)) @​[pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci) - chore: adopt pytest>=9.0.0 config ([#​4861](https://redirect.github.com/ansible/ansible-lint/issues/4861)) [@​Qalthos](https://redirect.github.com/Qalthos) - chore(deps): update all dependencies ([#​4852](https://redirect.github.com/ansible/ansible-lint/issues/4852)) @​[renovate\[bot\]](https://redirect.github.com/apps/renovate) </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:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
34 lines
628 B
YAML
34 lines
628 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@v25.12.1
|
|
env:
|
|
HCLOUD_TOKEN: ""
|