Skip to content

Commit 9e5a7a2

Browse files
chore(deps): bump the dependencies group with 2 updates
Bumps the dependencies group with 2 updates: [actions/download-artifact](https://github.com/actions/download-artifact) and [docker/login-action](https://github.com/docker/login-action). Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) chore(deps): bump the dependencies group with 5 updates --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: https://github.com/codespell-project/codespell dependency-version: 2.4.2 dependency-type: direct:production dependency-group: dependencies - dependency-name: clang-format dependency-version: 22.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: cppcheck dependency-version: 1.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: https://github.com/psf/black-pre-commit-mirror dependency-version: 26.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: https://github.com/editorconfig-checker/editorconfig-checker.python dependency-version: 3.6.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent eb2322c commit 9e5a7a2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147

148148
steps:
149149
- name: Download JUnit results
150-
uses: actions/download-artifact@v7
150+
uses: actions/download-artifact@v8
151151
with:
152152
path: junit
153153
pattern: junit-*

.github/workflows/tag_and_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ jobs:
243243

244244
steps:
245245
- name: Login to Docker
246-
uses: docker/login-action@v3
246+
uses: docker/login-action@v4
247247
with:
248248
username: benvining
249249
password: ${{ secrets.DOCKERHUB_TOKEN }}

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ repos:
8585

8686
# auto-fix spelling mistakes
8787
- repo: https://github.com/codespell-project/codespell
88-
rev: v2.4.1
88+
rev: v2.4.2
8989
hooks:
9090
- id: codespell
9191
args: [--write-changes, --ignore-words=config/codespell_ignore.txt]
@@ -96,13 +96,13 @@ repos:
9696
hooks:
9797
- id: clang-format
9898
exclude_types: [json]
99-
additional_dependencies: [clang-format>=20.1.8]
99+
additional_dependencies: [clang-format>=22.1.0]
100100
- repo: https://github.com/pocc/pre-commit-hooks
101101
rev: v1.3.5
102102
hooks:
103103
- id: cppcheck
104104
args: [--cppcheck-build-dir=Builds/cppcheck, --quiet, --inline-suppr, --std=c++23, --language=c++, --check-level=exhaustive, --force, --enable=all, --suppress=unusedFunction, --suppress=unusedStructMember, --suppress=unmatchedSuppression, --suppress=class_X_Y, --suppress=missingIncludeSystem, --suppress=missingInclude, --suppress=internalAstError]
105-
additional_dependencies: [cppcheck>=1.4.7]
105+
additional_dependencies: [cppcheck>=1.5.1]
106106
- id: cpplint
107107
args: [--verbose=0, --quiet]
108108
additional_dependencies: [cpplint]
@@ -132,7 +132,7 @@ repos:
132132
- id: pyupgrade
133133

134134
- repo: https://github.com/psf/black-pre-commit-mirror
135-
rev: 26.1.0
135+
rev: 26.3.0
136136
hooks:
137137
- id: black
138138

@@ -205,7 +205,7 @@ repos:
205205

206206
# check editorconfig rules
207207
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
208-
rev: 3.6.0
208+
rev: 3.6.1
209209
hooks:
210210
- id: editorconfig-checker
211211
args: [-config, config/.editorconfig-checker.json]

0 commit comments

Comments
 (0)