Skip to content
Open
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
43 changes: 39 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,51 @@
version: 2
updates:
- package-ecosystem: "nuget"
directory: "/"
# https://devblogs.microsoft.com/dotnet/using-dependabot-to-manage-dotnet-sdk-updates/
- package-ecosystem: "dotnet-sdk"
directory: /
schedule:
interval: "weekly"
day: "tuesday"
open-pull-requests-limit: 1

# NuGet package updates
- package-ecosystem: nuget
directory: /
schedule:
interval: "weekly"
day: "sunday"
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: "github-actions"
directory: "/"
groups:
microsoft-sbom:
patterns: ['Microsoft.Sbom.Targets']
Microsoft.NET.Test.Sdk:
patterns: ['Microsoft.NET.Test.Sdk']
coverlet.collector:
patterns: ['coverlet.collector']
testcontainers:
patterns: ['Testcontainers*']
microsoft:
patterns: [Microsoft.*, System.*]
xunit:
patterns: [xunit.*]
# Grouping for Testcontainers
kafka:
patterns: ['Confluent.Kafka']
RabbitMQ.Client:
patterns: ['RabbitMQ.Client']
RestAssured.Net:
patterns: ['RestAssured.Net']
all-dependencies:
patterns: ['*']

# Github Actions updates
- package-ecosystem: github-actions
directory: /
schedule:
interval: "weekly"
day: "sunday"
open-pull-requests-limit: 3
rebase-strategy: disabled


2 changes: 1 addition & 1 deletion .github/workflows/steps.dotnet-nuget-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ${{ inputs.runs-on }}
steps:
- name: 📥 Download artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: nugets_${{ inputs.runs-on }}
path: nuget_packages
Expand Down