Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5a0f1c7

Browse files
Update CI and devDependencies
1 parent 7749ed7 commit 5a0f1c7

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-python@v5
16-
- uses: pre-commit/[email protected].0
16+
- uses: pre-commit/[email protected].1

.github/workflows/shellcheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717

1818
steps:
1919
- name: Repository checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323

2424
- id: ShellCheck
2525
name: Differential ShellCheck
26-
uses: redhat-plumbers-in-action/differential-shellcheck@v4
26+
uses: redhat-plumbers-in-action/differential-shellcheck@v5
2727
with:
2828
exclude-path: |
2929
tests/**
@@ -33,7 +33,7 @@ jobs:
3333

3434
- if: ${{ always() }}
3535
name: Upload artifact with ShellCheck defects in SARIF format
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: Differential ShellCheck SARIF
3939
path: ${{ steps.ShellCheck.outputs.sarif }}

.pre-commit-config.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/hhatto/autopep8
5-
rev: 'v2.1.0'
5+
rev: 'v2.1.1'
66
hooks:
77
- id: autopep8
88

@@ -21,7 +21,7 @@ repos:
2121
- id: trailing-whitespace
2222

2323
- repo: https://github.com/pre-commit/mirrors-mypy
24-
rev: "v1.9.0"
24+
rev: "v1.10.0"
2525
hooks:
2626
- id: mypy
2727
# TODO: find out how to amend mypy, pyright, pre-commit and package requirements.
@@ -65,7 +65,7 @@ repos:
6565
args: [--config-file=pyproject.toml]
6666

6767
- repo: https://github.com/RobertCraigie/pyright-python
68-
rev: v1.1.357
68+
rev: v1.1.364
6969
hooks:
7070
- id: pyright
7171
# TODO: find out how to amend mypy, pyright, pre-commit and package requirements.
@@ -106,7 +106,7 @@ repos:
106106
- "types-docutils"
107107

108108
- repo: https://github.com/python-jsonschema/check-jsonschema
109-
rev: "0.28.1"
109+
rev: "0.28.4"
110110
hooks:
111111
- id: check-metaschema
112112
name: "Check JSON schemas validity"
@@ -119,7 +119,7 @@ repos:
119119
files: ^tmt/schemas/.*\.yaml
120120

121121
- repo: https://github.com/ansible-community/ansible-lint.git
122-
rev: v24.2.1
122+
rev: v24.5.0
123123
hooks:
124124
- id: ansible-lint
125125
args:
@@ -135,15 +135,15 @@ repos:
135135
# in order to be parsed by ansible-lint
136136

137137
- repo: https://github.com/charliermarsh/ruff-pre-commit
138-
rev: v0.3.5
138+
rev: v0.4.5
139139
hooks:
140140
- id: ruff
141141
args:
142142
- '--fix'
143143
- '--show-fixes'
144144

145145
- repo: https://github.com/teemtee/tmt.git
146-
rev: 1.32.1
146+
rev: 1.33.0
147147
hooks:
148148
- id: tmt-lint
149149
additional_dependencies:
@@ -154,7 +154,7 @@ repos:
154154
# There is *a lot* of them, and hatch might fetch many of them.
155155
- "botocore>=1.25.10" # 1.25.10 is the current one available for RHEL9
156156
- repo: https://github.com/codespell-project/codespell
157-
rev: v2.2.6
157+
rev: v2.3.0
158158
hooks:
159159
- id: codespell
160160
additional_dependencies:

0 commit comments

Comments
 (0)