Skip to content
This repository was archived by the owner on Jan 13, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0
uses: actions/setup-python@v6
with:
python-version: '3.13'
- uses: pre-commit/action@v3.0.1
- name: Setup `packer`
uses: hashicorp/setup-packer@main
with:
Expand All @@ -39,7 +41,7 @@ jobs:
AMI_IMAGE_NAME: ${{ github.event.repository.name }}-${{ github.ref_name }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup `packer`
uses: hashicorp/setup-packer@main
with:
Expand Down
6 changes: 5 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
ci:
skip: [ansible-lint]
autoupdate_schedule: monthly

default_language_version:
python: python3

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
Expand All @@ -12,7 +16,7 @@ repos:
- id: pretty-format-json
args: [--autofix]
- repo: https://github.com/ansible/ansible-lint
rev: v25.8.2
rev: v25.12.2
hooks:
- id: ansible-lint
additional_dependencies:
Expand Down