-
Notifications
You must be signed in to change notification settings - Fork 3
🌱 Add dependabot for automated dependency updates #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| .github/workflows/*.lock.yml linguist-generated=true merge=ours | ||
| .github/workflows/*.campaign.g.md linguist-generated=true merge=ours |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { | ||
| "entries": { | ||
| "actions/github-script@v8": { | ||
| "repo": "actions/github-script", | ||
| "version": "v8", | ||
| "sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd" | ||
| }, | ||
| "github/gh-aw/actions/setup@v0.45.0": { | ||
| "repo": "github/gh-aw/actions/setup", | ||
| "version": "v0.45.0", | ||
| "sha": "58d1d157fbac0f1204798500faefc4f7461ebe28" | ||
| } | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,57 @@ | ||||||||||||||||||||||||||||
| version: 2 | ||||||||||||||||||||||||||||
| updates: | ||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||
| # GitHub Actions dependencies | ||||||||||||||||||||||||||||
| - package-ecosystem: "github-actions" | ||||||||||||||||||||||||||||
| directory: "/" | ||||||||||||||||||||||||||||
| schedule: | ||||||||||||||||||||||||||||
| interval: "weekly" | ||||||||||||||||||||||||||||
| labels: | ||||||||||||||||||||||||||||
| - "dependencies" | ||||||||||||||||||||||||||||
| - "release-note-none" | ||||||||||||||||||||||||||||
| commit-message: | ||||||||||||||||||||||||||||
| prefix: "deps(actions)" | ||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||
| # Docker base image updates (root Dockerfile) | ||||||||||||||||||||||||||||
| - package-ecosystem: "docker" | ||||||||||||||||||||||||||||
| directory: "/" | ||||||||||||||||||||||||||||
| schedule: | ||||||||||||||||||||||||||||
| interval: "weekly" | ||||||||||||||||||||||||||||
| labels: | ||||||||||||||||||||||||||||
| - "dependencies" | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
| - "dependencies" | |
| - "dependencies" | |
| - "release-note-none" |
Copilot
AI
Feb 14, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The repository contains a Rust workspace with Cargo.toml and Cargo.lock files, but there is no cargo package ecosystem configured in dependabot. Consider adding a cargo configuration block to monitor Rust dependencies. This would help keep dependencies like serde, clap, tracing, and other workspace dependencies up to date.
| prefix: "deps(docker)" | |
| prefix: "deps(docker)" | |
| # Rust (Cargo) dependency updates | |
| - package-ecosystem: "cargo" | |
| directory: "/" | |
| schedule: | |
| interval: "weekly" | |
| labels: | |
| - "dependencies" | |
| - "release-note-none" | |
| commit-message: | |
| prefix: "deps(cargo)" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| name: Check Signed Commits | ||
| on: pull_request_target | ||
|
|
||
| jobs: | ||
| signed-commits: | ||
| uses: llm-d/llm-d-infra/.github/workflows/reusable-signed-commits.yml@main | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| name: "Copilot Setup Steps" | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| paths: | ||
| - .github/workflows/copilot-setup-steps.yml | ||
|
|
||
| jobs: | ||
| copilot-setup-steps: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - name: Install gh-aw extension | ||
| run: | | ||
| curl -fsSL https://raw.githubusercontent.com/githubnext/gh-aw/refs/heads/main/install-gh-aw.sh | bash | ||
|
|
||
| - name: Verify gh-aw installation | ||
| run: gh aw version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Docker ecosystem is configured with directory: "/", which will only monitor the Dockerfile at the root level. However, there are additional Dockerfiles in subdirectories (e.g., hca-probe/Dockerfile and hca-probe/docker/Dockerfile). Consider adding separate entries for each directory containing a Dockerfile to ensure all Docker base images are monitored for updates.