Skip to content

chore(ci): add dependabot file #706

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

Merged
merged 5 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: chore
include: scope

- package-ecosystem: docker
directory: /docs
commit-message:
prefix: chore
include: scope
schedule:
interval: daily
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ name: Build .NET

on:
push:
paths:
- "libraries/**"
branches: [develop, main]
pull_request:
paths:
- "libraries/**"
branches: [develop, main]

defaults:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@ name: "CodeQL"

on:
push:
paths:
- "libraries/**"
branches: [ "develop", main ]
pull_request:
# The branches below must be a subset of the branches above
paths:
- "libraries/**"
branches: [ "develop" ]
schedule:
- cron: '42 8 * * 0'
Expand Down
3 changes: 2 additions & 1 deletion docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
FROM squidfunk/mkdocs-material
# v9.1.18
FROM squidfunk/mkdocs-material@sha256:41942f7a2f5163aacd0e866e076d95db4f26550b97d76c1594c04250cbb580e9
RUN pip install mkdocs-git-revision-date-plugin
Loading