Skip to content
This repository was archived by the owner on Jan 13, 2026. It is now read-only.

Commit 80b3382

Browse files
authored
update github actions and pre-commit dependencies (#35)
1 parent 5d7978a commit 80b3382

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/deploy.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ jobs:
1111
validate:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v6
1515
- name: Set up Python
16-
uses: actions/setup-python@v4
17-
- uses: pre-commit/action@v3.0.0
16+
uses: actions/setup-python@v6
17+
with:
18+
python-version: '3.13'
19+
- uses: pre-commit/action@v3.0.1
1820
- name: Setup `packer`
1921
uses: hashicorp/setup-packer@main
2022
with:
@@ -39,7 +41,7 @@ jobs:
3941
AMI_IMAGE_NAME: ${{ github.event.repository.name }}-${{ github.ref_name }}
4042
steps:
4143
- name: Checkout
42-
uses: actions/checkout@v3
44+
uses: actions/checkout@v6
4345
- name: Setup `packer`
4446
uses: hashicorp/setup-packer@main
4547
with:

.pre-commit-config.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
ci:
22
skip: [ansible-lint]
33
autoupdate_schedule: monthly
4+
5+
default_language_version:
6+
python: python3
7+
48
repos:
59
- repo: https://github.com/pre-commit/pre-commit-hooks
610
rev: v6.0.0
@@ -12,7 +16,7 @@ repos:
1216
- id: pretty-format-json
1317
args: [--autofix]
1418
- repo: https://github.com/ansible/ansible-lint
15-
rev: v25.8.2
19+
rev: v25.12.2
1620
hooks:
1721
- id: ansible-lint
1822
additional_dependencies:

0 commit comments

Comments
 (0)