Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
- uses: actions/setup-python@v5
with:
# renovate: datasource=docker depName=python
python-version: "3.12"
python-version: "3.14"

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
terraform_version: "1.8.2"
terraform_version: "1.13.4"
terraform_wrapper: false

- uses: pre-commit/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-terraform-module-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.14"
- uses: actions/checkout@v4
with:
# so we can checkout any reference or relative
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.14"
- uses: actions/checkout@v4
with:
ref: ${{ inputs.compare_to }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-args.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.14"
- uses: actions/checkout@v4
- name: Send Metric
run: |
Expand Down
22 changes: 11 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
default_stages: [commit]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: check-shebang-scripts-are-executable
name: check-shebang-scripts-are-executable
Expand All @@ -23,28 +23,28 @@ repos:
name: editorconfig

- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.89.1
rev: v1.103.0
hooks:
- id: terraform_fmt

- repo: https://github.com/koalaman/shellcheck-precommit
rev: v0.10.0
rev: v0.11.0
hooks:
- id: shellcheck

- repo: https://github.com/rhysd/actionlint
rev: v1.7.0
rev: v1.7.8
hooks:
- id: actionlint-docker

- repo: https://github.com/PyCQA/bandit
rev: 1.7.8
rev: 1.8.6
hooks:
- id: bandit
name: bandit

- repo: https://github.com/PyCQA/pylint
rev: v3.1.0
rev: v3.3.9
hooks:
- id: pylint
name: pylint
Expand All @@ -56,7 +56,7 @@ repos:
name: isort

- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
rev: 7.3.0
hooks:
- id: flake8
name: flake8
Expand All @@ -68,27 +68,27 @@ repos:
name: prettier

- repo: https://github.com/adrienverge/yamllint
rev: v1.35.1
rev: v1.37.1
hooks:
- id: yamllint
name: yamllint
args: ["--strict"]

- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.13.0
rev: v0.18.1
hooks:
- id: markdownlint-cli2
alias: markdownlint
name: markdownlint

- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.4.1
hooks:
- id: codespell
name: codespell

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.28.3
rev: 0.34.1
hooks:
- id: check-github-workflows
name: check-github-workflows
Expand Down
Loading