Skip to content

Commit

Permalink
Remove the old disabled Dependabot configuration
Browse files Browse the repository at this point in the history
In the past (GitoxideLabs#143), Dependabot version updates had been used to
keep `cargo` dependencies up to date. This was removed in favor of
doing manual updates based on automatic reports from `cargo deny`
and the old `dependabot.yml` was kept but renamed to disable it and
point people to GitoxideLabs#144 to learn about the change. Since then,
Dependabot security updates, which are distinct from Dependabot
version updates, were enabled (see GitoxideLabs#1254), and later, Dependabot
version updates were reintroduced for GitHub Actions only (GitoxideLabs#1357).
At that point, there were two Dependabot-related YAML files: the
old disabled one, and the new one for GHA.

This removes the old one, explaining the situation in a comment in
the new one, including a link to GitoxideLabs#144.

While doing so, this also adjusts the YAML code style there, to
bring it in line with the style of most other YAML files in the
repository.
  • Loading branch information
EliahKagan committed Nov 11, 2024
1 parent a7a3526 commit 8c9e50b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 15 deletions.
17 changes: 10 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
groups:
github-actions:
patterns: ["*"]
# We only use Dependabot *version* updates for GitHub Actions. Rust dependencies are checked via
# `cargo deny` and manually updated (see https://github.com/GitoxideLabs/gitoxide/issues/144), or
# by Dependabot *security* updates (which don't need the `cargo` ecosystem to be listed here).
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: weekly
groups:
github-actions:
patterns: ['*']
8 changes: 0 additions & 8 deletions .github/dependabot.yml.disabled-see-issue-144

This file was deleted.

0 comments on commit 8c9e50b

Please sign in to comment.