Skip to content

Commit 4efd231

Browse files
dependabot[bot]jku
andauthored
build(deps): bump the pinned-test-dependencies group across 3 directories with 3 updates (#666)
* build(deps): bump the pinned-test-dependencies group across 3 directories with 3 updates Bumps the pinned-test-dependencies group with 1 update in the /actions directory: [zizmor](https://github.com/zizmorcore/zizmor). Bumps the pinned-test-dependencies group with 2 updates in the /repo directory: [mypy](https://github.com/python/mypy) and [ruff](https://github.com/astral-sh/ruff). Bumps the pinned-test-dependencies group with 2 updates in the /signer directory: [mypy](https://github.com/python/mypy) and [ruff](https://github.com/astral-sh/ruff). Updates `zizmor` from 1.12.1 to 1.13.0 - [Release notes](https://github.com/zizmorcore/zizmor/releases) - [Changelog](https://github.com/zizmorcore/zizmor/blob/main/docs/release-notes.md) - [Commits](zizmorcore/zizmor@v1.12.1...v1.13.0) Updates `mypy` from 1.17.1 to 1.18.1 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](python/mypy@v1.17.1...v1.18.1) Updates `ruff` from 0.12.12 to 0.13.0 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.12.12...0.13.0) Updates `mypy` from 1.17.1 to 1.18.1 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](python/mypy@v1.17.1...v1.18.1) Updates `ruff` from 0.12.12 to 0.13.0 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.12.12...0.13.0) --- updated-dependencies: - dependency-name: zizmor dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pinned-test-dependencies - dependency-name: mypy dependency-version: 1.18.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pinned-test-dependencies - dependency-name: ruff dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pinned-test-dependencies - dependency-name: mypy dependency-version: 1.18.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pinned-test-dependencies - dependency-name: ruff dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pinned-test-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * lint fixes * Mark a variable unused * Don't run zizmor in pedantic mode: it's a bit much --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jussi Kukkonen <[email protected]>
1 parent 3f9932a commit 4efd231

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/actions-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
run: python -m pip install -r actions/lint-requirements.txt
3636

3737
- name: Run zizmor
38-
run: zizmor --pedantic .
38+
run: zizmor .

actions/lint-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
zizmor == 1.12.1
1+
zizmor == 1.13.0

repo/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ tuf-on-ci-update-targets = "tuf_on_ci:update_targets"
3131

3232
[project.optional-dependencies]
3333
lint = [
34-
"mypy == 1.17.1",
35-
"ruff == 0.12.12",
34+
"mypy == 1.18.1",
35+
"ruff == 0.13.0",
3636
]
3737

3838
[tool.hatch.version]

repo/tuf_on_ci/_repository.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ def build(self, metadata_path: str, artifact_path: str | None):
574574
if artifact_path:
575575
# copy artifacts
576576
for target in role.targets.values():
577-
rdir, sep, name = target.path.rpartition("/")
577+
rdir, _, name = target.path.rpartition("/")
578578
os.makedirs(os.path.join(artifact_path, rdir), exist_ok=True)
579579
src_path = os.path.join(self._dir, "..", "targets", rdir, name)
580580
for hash in target.hashes.values():

signer/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ tuf-on-ci-sign = "tuf_on_ci_sign:sign"
2929

3030
[project.optional-dependencies]
3131
lint = [
32-
"mypy == 1.17.1",
33-
"ruff == 0.12.12",
32+
"mypy == 1.18.1",
33+
"ruff == 0.13.0",
3434
]
3535

3636
[tool.hatch.version]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ description = Actions Linting
2828
labels = lint
2929
deps = -r actions/lint-requirements.txt
3030
commands =
31-
zizmor --pedantic .
31+
zizmor .
3232

3333
[testenv:test-repo]
3434
description = Repository unit tests

0 commit comments

Comments
 (0)