Skip to content

Commit

Permalink
Update CI and devDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 26, 2024
1 parent 7749ed7 commit dc7d38d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
6 changes: 3 additions & 3 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:

steps:
- name: Repository checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- id: ShellCheck
name: Differential ShellCheck
uses: redhat-plumbers-in-action/differential-shellcheck@v4
uses: redhat-plumbers-in-action/differential-shellcheck@v5
with:
exclude-path: |
tests/**
Expand All @@ -33,7 +33,7 @@ jobs:

- if: ${{ always() }}
name: Upload artifact with ShellCheck defects in SARIF format
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Differential ShellCheck SARIF
path: ${{ steps.ShellCheck.outputs.sarif }}
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/hhatto/autopep8
rev: 'v2.1.0'
rev: 'v2.3.1'
hooks:
- id: autopep8

Expand All @@ -21,7 +21,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.9.0"
rev: "v1.11.2"
hooks:
- id: mypy
# TODO: find out how to amend mypy, pyright, pre-commit and package requirements.
Expand Down Expand Up @@ -65,7 +65,7 @@ repos:
args: [--config-file=pyproject.toml]

- repo: https://github.com/RobertCraigie/pyright-python
rev: v1.1.357
rev: v1.1.382
hooks:
- id: pyright
# TODO: find out how to amend mypy, pyright, pre-commit and package requirements.
Expand Down Expand Up @@ -106,7 +106,7 @@ repos:
- "types-docutils"

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: "0.28.1"
rev: "0.29.2"
hooks:
- id: check-metaschema
name: "Check JSON schemas validity"
Expand All @@ -119,7 +119,7 @@ repos:
files: ^tmt/schemas/.*\.yaml

- repo: https://github.com/ansible-community/ansible-lint.git
rev: v24.2.1
rev: v24.9.2
hooks:
- id: ansible-lint
args:
Expand All @@ -135,15 +135,15 @@ repos:
# in order to be parsed by ansible-lint

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.3.5
rev: v0.6.7
hooks:
- id: ruff
args:
- '--fix'
- '--show-fixes'

- repo: https://github.com/teemtee/tmt.git
rev: 1.32.1
rev: 1.36.1
hooks:
- id: tmt-lint
additional_dependencies:
Expand All @@ -154,7 +154,7 @@ repos:
# There is *a lot* of them, and hatch might fetch many of them.
- "botocore>=1.25.10" # 1.25.10 is the current one available for RHEL9
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
additional_dependencies:
Expand Down

0 comments on commit dc7d38d

Please sign in to comment.