Compare commits

...

6 Commits

Author SHA1 Message Date
Jonas Bushart
410bbe6de1 Merge pull request #126 from actions-rust-lang/bump-version 2025-11-22 22:50:33 +01:00
Jonas Bushart
f78860393f Update cargo audit to 0.22.0 2025-11-22 22:48:57 +01:00
Jonas Bushart
80738b141e Merge pull request #125 from actions-rust-lang/pre-commit-ci-update-config 2025-11-17 22:08:55 +01:00
pre-commit-ci[bot]
7ef4b10483 [pre-commit.ci] pre-commit autoupdate
updates:
- [github.com/psf/black-pre-commit-mirror: 25.9.0 → 25.11.0](https://github.com/psf/black-pre-commit-mirror/compare/25.9.0...25.11.0)
- [github.com/asottile/pyupgrade: v3.21.0 → v3.21.1](https://github.com/asottile/pyupgrade/compare/v3.21.0...v3.21.1)
- [github.com/python-jsonschema/check-jsonschema: 0.34.1 → 0.35.0](https://github.com/python-jsonschema/check-jsonschema/compare/0.34.1...0.35.0)
2025-11-17 17:22:24 +00:00
Jonas Bushart
bba9e51bf4 Merge pull request #123 from actions-rust-lang/pre-commit-ci-update-config 2025-10-13 23:32:02 +02:00
pre-commit-ci[bot]
52a1147feb [pre-commit.ci] pre-commit autoupdate
updates:
- [github.com/PyCQA/isort: 6.1.0 → 7.0.0](https://github.com/PyCQA/isort/compare/6.1.0...7.0.0)
- [github.com/asottile/pyupgrade: v3.20.0 → v3.21.0](https://github.com/asottile/pyupgrade/compare/v3.20.0...v3.21.0)
- [github.com/python-jsonschema/check-jsonschema: 0.34.0 → 0.34.1](https://github.com/python-jsonschema/check-jsonschema/compare/0.34.0...0.34.1)
2025-10-13 17:23:23 +00:00
3 changed files with 10 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.9.0
rev: 25.11.0
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
@@ -14,13 +14,13 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/PyCQA/isort
rev: 6.1.0
rev: 7.0.0
# https://github.com/psf/black/blob/main/docs/guides/using_black_with_other_tools.md
hooks:
- id: isort
args: ["--profile=black"]
- repo: https://github.com/asottile/pyupgrade
rev: v3.20.0
rev: v3.21.1
hooks:
- id: pyupgrade
args: ["--py37-plus"]
@@ -31,7 +31,7 @@ repos:
additional_dependencies:
- types-requests
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.34.0
rev: 0.35.0
hooks:
- id: check-dependabot
- id: check-github-actions

View File

@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.2.6] - 2025-11-22
* Update `cargo-audit` to 0.22.0
## [1.2.5] - 2025-10-09
* Pin the version of `actions/cache` to commit hash by @Gronner in #122

View File

@@ -45,12 +45,12 @@ runs:
${{ steps.cargo-home.outputs.cargohome }}/bin/cargo-audit*
${{ steps.cargo-home.outputs.cargohome }}/.crates.toml
${{ steps.cargo-home.outputs.cargohome }}/.crates2.json
key: cargo-audit-v0.21.2
key: cargo-audit-v0.22.0
- name: Install cargo-audit
if: steps.cache.outputs.cache-hit != 'true'
# Update both this version number and the cache key
run: cargo install cargo-audit --vers 0.21.2 --no-default-features
run: cargo install cargo-audit --vers 0.22.0 --no-default-features
shell: bash
- run: |