Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7a67ba5
chore(deps): Update actions/setup-python action to v6
renovate[bot] Oct 1, 2025
40e0ace
chore(deps): Update actions/setup-python action to v6 (#32)
epage Oct 1, 2025
3513a5b
chore(deps): Update actions/checkout action to v5
renovate[bot] Oct 1, 2025
f2695e7
chore(deps): Update actions/checkout action to v5 (#31)
epage Oct 1, 2025
845f426
chore(deps): Update Rust Stable to v1.91 (#33)
renovate[bot] Oct 31, 2025
b8fbcb7
chore(ci): string_to_string was merged into implicit_clone
epage Oct 31, 2025
3628419
chore(deps): Update github/codeql-action action to v4
renovate[bot] Nov 1, 2025
4b508b6
chore(deps): Update github/codeql-action action to v4 (#34)
epage Nov 3, 2025
ee2eef5
chore(ci): Ensure latest-deps jobs actually uses them
epage Nov 13, 2025
b0881a6
chore(ci): Give more control over where alt version jobs run
epage Nov 13, 2025
1d7f429
chore(deps): Update actions/checkout action to v6
renovate[bot] Dec 1, 2025
d5f98d7
chore(deps): Update actions/checkout action to v6 (#35)
epage Dec 1, 2025
f4efb92
chore(deps): Update Rust Stable to v1.92 (#36)
renovate[bot] Dec 11, 2025
3f895ab
chore(ci): Attempt to auto-update pre-commit
epage Dec 31, 2025
4253271
chore(ci): Attempt to auto-update pre-commit
epage Dec 31, 2025
b0aa288
chore(deps): Update pre-commit hook crate-ci/committed to v1.1.9
renovate[bot] Jan 1, 2026
d841861
chore(deps): Update pre-commit hook crate-ci/typos to v1.41.0
renovate[bot] Jan 1, 2026
4e1c0be
chore(deps): Update pre-commit hook crate-ci/typos to v1.41.0 (#39)
epage Jan 1, 2026
8e77956
chore(deps): Update pre-commit hook crate-ci/committed to v1.1.9 (#38)
epage Jan 1, 2026
16faf2c
chore(ci): Switch from pre-commit to prek
epage Jan 14, 2026
5932b20
chore(ci): Pin the prek version
epage Jan 14, 2026
04db5b5
chore: Update from _rust template
epage Jan 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
commitMessageLowerCase: 'never',
configMigration: true,
dependencyDashboard: true,
"pre-commit": {
enabled: true
},
customManagers: [
{
customType: 'regex',
Expand All @@ -25,6 +28,18 @@
packageNameTemplate: 'rust-lang/rust',
datasourceTemplate: 'github-releases',
},
{
customType: 'regex',
managerFilePatterns: [
'/^\\.github/workflows/pre-commit.yml$/',
],
matchStrings: [
'prek-version.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)',
],
depNameTemplate: 'prek',
packageNameTemplate: 'j178/prek',
datasourceTemplate: 'github-releases',
},
],
packageRules: [
{
Expand All @@ -41,6 +56,20 @@
],
automerge: true,
},
{
commitMessageTopic: 'Prek',
matchManagers: [
'custom.regex',
],
matchDepNames: [
'prek',
],
extractVersion: '^(?<version>\\d+\\.\\d+\\.\\d+)',
schedule: [
'* * * * *',
],
automerge: true,
},
// Goals:
// - Keep version reqs low, ignoring compatible normal/build dependencies
// - Take advantage of latest dev-dependencies
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ jobs:
run: cargo hack test --each-feature --workspace
msrv:
name: "Check MSRV"
runs-on: ubuntu-latest
strategy:
matrix:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand All @@ -70,7 +73,10 @@ jobs:
run: cargo hack check --each-feature --locked --rust-version --ignore-private --workspace --all-targets --keep-going
minimal-versions:
name: Minimal versions
runs-on: ubuntu-latest
strategy:
matrix:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: j178/prek-action@v1
with:
python-version: '3.x'
- uses: pre-commit/[email protected]
prek-version: '0.2.27'
7 changes: 6 additions & 1 deletion .github/workflows/rust-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,12 @@ jobs:
run: cargo hack test --each-feature --workspace
latest:
name: "Check latest dependencies"
runs-on: ubuntu-latest
strategy:
matrix:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
env:
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ repos:
- id: check-case-conflict
- id: detect-private-key
- repo: https://github.com/crate-ci/typos
rev: v1.32.0
rev: v1.41.0
hooks:
- id: typos
- repo: https://github.com/crate-ci/committed
rev: v1.1.7
rev: v1.1.9
hooks:
- id: committed
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ str_to_string = "warn"
string_add = "warn"
string_add_assign = "warn"
string_lit_as_bytes = "warn"
string_to_string = "warn"
todo = "warn"
trait_duplication_in_bounds = "warn"
uninlined_format_args = "warn"
Expand Down
Loading