Skip to content
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
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"isRoot": true,
"tools": {
"dotnet-stryker": {
"version": "4.5.1",
"version": "4.8.1",
"commands": [
"dotnet-stryker"
],
"rollForward": false
},
"dotnet-reportgenerator-globaltool": {
"version": "5.4.7",
"version": "5.4.12",
"commands": [
"reportgenerator"
],
Expand Down
22 changes: 17 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,26 @@ updates:
labels:
- ":game_die: dependencies"
- ":robot: bot"
open-pull-requests-limit: 10
groups:
packages:
patterns:
- "*"
ignore:
## avoid Moq 4.20+
- dependency-name: "Moq"
## Preserve backward compatibility for library consumers
- dependency-name: "FluentValidation"
- dependency-name: "FluentValidation.DependencyInjectionExtensions"
## V8 onwards have licencing imposed
- dependency-name: "FluentAssertions"
## CsvHelper has binary incompatibilities
- dependency-name: "CsvHelper"
- package-ecosystem: "github-actions"
directory: "/.github/workflows"
schedule:
interval: "daily"
time: "06:00"
timezone: "Europe/London"
labels:
- ":game_die: dependencies"
- ":robot: bot"
groups:
packages:
patterns:
- "*"
4 changes: 2 additions & 2 deletions .github/workflows/buildtestpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: github.ref == 'refs/heads/main'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sca.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
name: Dependency scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Dependency scan
uses: tonycknight/pkgchk-action@v1.0.22
uses: tonycknight/pkgchk-action@v1
with:
project-path: ${{ env.SOLUTION_NAME }}