Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
0404ebc
ci(workflows): consolidate ci into a single sequential job
upsetbit Aug 4, 2026
4ac3606
ci(release): move release workflows to github-hosted runners
upsetbit Aug 4, 2026
4dde26a
build(devbox): pin govulncheck and gosec
upsetbit Aug 4, 2026
f753e54
ci(deps): group dependabot minor and patch updates
upsetbit Aug 4, 2026
22c3f12
ci(workflows): restore the linux leg of the dotnet runtime matrix
upsetbit Aug 4, 2026
5c07f77
ci(workflows): persist language caches when checks fail
upsetbit Aug 4, 2026
aaa8d91
ci(workflows): report every failed check in the aggregator
upsetbit Aug 4, 2026
03018b1
ci(workflows): fold the coverage upload into the aggregator
upsetbit Aug 4, 2026
e6aa2bd
ci(workflows): cap cargo test parallelism against an etxtbsy race
upsetbit Aug 4, 2026
d1990f1
ci(workflows): drop the unused tooling path filter
upsetbit Aug 4, 2026
0815501
ci(workflows): only save a cache once its content was produced
upsetbit Aug 4, 2026
274691c
build(devbox): let the pinned packages win over locally installed tools
upsetbit Aug 4, 2026
249b6b1
ci(workflows): key the go cache on the toolchain that produced it
upsetbit Aug 4, 2026
712c004
ci(workflows): restrict the cargo cache to runs that populate it
upsetbit Aug 4, 2026
cf0fcbc
ci(workflows): require a cargo lane to have compiled before saving
upsetbit Aug 4, 2026
6480cdd
ci(deps): trigger the dotnet lane on root editorconfig changes
upsetbit Aug 4, 2026
a8be7bf
ci(deps): run every lane when gitattributes changes
upsetbit Aug 4, 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
28 changes: 28 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ updates:
open-pull-requests-limit: 5
commit-message:
prefix: "build(deps)"
groups:
minor-and-patch:
patterns: ["*"]
update-types: ["minor", "patch"]

- package-ecosystem: cargo
directory: /
Expand All @@ -15,6 +19,10 @@ updates:
open-pull-requests-limit: 5
commit-message:
prefix: "build(deps)"
groups:
minor-and-patch:
patterns: ["*"]
update-types: ["minor", "patch"]

- package-ecosystem: npm
directory: /
Expand All @@ -23,6 +31,10 @@ updates:
open-pull-requests-limit: 5
commit-message:
prefix: "build(deps)"
groups:
minor-and-patch:
patterns: ["*"]
update-types: ["minor", "patch"]

- package-ecosystem: npm
directory: /bindings/node
Expand All @@ -31,6 +43,10 @@ updates:
open-pull-requests-limit: 5
commit-message:
prefix: "build(deps)"
groups:
minor-and-patch:
patterns: ["*"]
update-types: ["minor", "patch"]

- package-ecosystem: pip
directory: /bindings/python
Expand All @@ -39,6 +55,10 @@ updates:
open-pull-requests-limit: 5
commit-message:
prefix: "build(deps)"
groups:
minor-and-patch:
patterns: ["*"]
update-types: ["minor", "patch"]

- package-ecosystem: nuget
directory: /dotnet
Expand All @@ -47,6 +67,10 @@ updates:
open-pull-requests-limit: 5
commit-message:
prefix: "build(deps)"
groups:
minor-and-patch:
patterns: ["*"]
update-types: ["minor", "patch"]

- package-ecosystem: github-actions
directory: /
Expand All @@ -55,3 +79,7 @@ updates:
open-pull-requests-limit: 5
commit-message:
prefix: "ci(deps)"
groups:
minor-and-patch:
patterns: ["*"]
update-types: ["minor", "patch"]
Loading