Skip to content

Commit

Permalink
Add Dependabot configuration
Browse files Browse the repository at this point in the history
Add configuration for Dependabot to automatically update dependencies,
if possible. Updates are currently managed to GitHub Actions as well as
Cargo.toml based Rust dependencies.
  • Loading branch information
d-e-s-o committed Feb 26, 2024
1 parent 88d4f2d commit b4abf05
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright (C) 2024 Daniel Mueller <deso@posteo.net>
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: github-actions
rebase-strategy: auto
directory: /
schedule:
interval: daily
- package-ecosystem: cargo
versioning-strategy: auto
directory: /
schedule:
interval: daily
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# Copyright (C) 2022-2023 Daniel Mueller <deso@posteo.net>
# Copyright (C) 2022-2024 Daniel Mueller <deso@posteo.net>
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

name: Test

on:
pull_request:
push:
branches:
- '**'
- '!dependabot/**'
workflow_call:

env:
Expand Down

0 comments on commit b4abf05

Please sign in to comment.