Skip to content

Commit a811589

Browse files
authored
Merge branch 'main' into dependabot/nuget/Microsoft.Azure.Functions.Worker.Sdk-2.0.2
2 parents 611f57f + 6b263ab commit a811589

2 files changed

Lines changed: 59 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,66 @@ updates:
1111
- ":robot: bot"
1212
open-pull-requests-limit: 10
1313
ignore:
14-
## avoid Moq 4.20+
14+
# Ignore Moq beyond 4.20 - see https://github.com/moq/moq/issues/1370
1515
- dependency-name: "Moq"
16+
versions: [">=4.20.0"]
1617
## Preserve backward compatibility for library consumers
1718
- dependency-name: "FluentValidation"
1819
- dependency-name: "FluentValidation.DependencyInjectionExtensions"
1920
- dependency-name: "Microsoft.Azure.WebJobs.Extensions.OpenApi.Core"
21+
# MediatR >= v13 requires a commercial license
22+
- dependency-name: "MediatR"
23+
versions: [">=13.0.0"]
24+
# AutoMapper >= v15 requires a commercial license
25+
- dependency-name: "AutoMapper"
26+
versions: [">=15.0.0"]
27+
# Ignore packages that are for different .NET versions
28+
- dependency-name: "Microsoft.*"
29+
update-types: ["version-update:semver-major"]
30+
- dependency-name: "System.*"
31+
update-types: ["version-update:semver-major"]
32+
# FluentAssertions >= v8 requires a commercial license
33+
- dependency-name: "FluentAssertions"
34+
versions: [">=8.0.0"]
35+
groups:
36+
AutoFixture:
37+
patterns:
38+
- "AutoFixture"
39+
- "AutoFixture.*"
40+
Azure:
41+
patterns:
42+
- "Azure.*"
43+
FluentValidation:
44+
patterns:
45+
- "FluentValidation"
46+
- "FluentValidation.*"
47+
Microsoft:
48+
patterns:
49+
- "Microsoft.*"
50+
NewDay:
51+
patterns:
52+
- "NewDay.*"
53+
Polly:
54+
patterns:
55+
- "Polly"
56+
- "Polly.*"
57+
SpecFlow:
58+
patterns:
59+
- "SpecFlow"
60+
- "SpecFlow.*"
61+
Swashbuckle:
62+
patterns:
63+
- "Swashbuckle.*"
64+
System:
65+
patterns:
66+
- "System.*"
67+
XUnit:
68+
patterns:
69+
- "xunit"
70+
- "xunit.*"
71+
- package-ecosystem: "github-actions"
72+
directory: "/"
73+
schedule:
74+
interval: "daily"
75+
time: "02:00"
76+
timezone: "Europe/London"

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Test
3636
run: dotnet test --no-build --verbosity normal --logger trx --results-directory "TestResults"
3737
- name: Upload test results
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: dotnet-results
4141
path: TestResults

0 commit comments

Comments
 (0)