Skip to content

Commit 236193d

Browse files
dependabot[bot]JerrettDavisclaude
authored
chore(deps): Bump actions/setup-dotnet from 5 to 6 in the github-actions-dependencies group (#130)
* chore(deps): Bump actions/setup-dotnet Bumps the github-actions-dependencies group with 1 update: [actions/setup-dotnet](https://github.com/actions/setup-dotnet). Updates `actions/setup-dotnet` from 5 to 6 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * fix(deps): patch AngleSharp and System.Security.Cryptography.Xml CVEs Vulnerability Check was failing (blocking Review Summary) due to two pre-existing high/moderate vulnerabilities unrelated to this PR's own diff, both surfaced by `dotnet list package --vulnerable`: - AngleSharp 1.4.0 (transitive via bunit 2.7.2) is vulnerable to GHSA-pgww-w46g-26qg / CVE-2026-54570 (mXSS via annotation-xml HTML integration point bypass). Pin to 1.5.2 (first patched: 1.5.0). - System.Security.Cryptography.Xml 10.0.9 in build/_build.csproj has 5 known high-severity advisories (GHSA-cvvh-rhrc-wg4q, GHSA-g8r8-53c2-pm3f, GHSA-23rf-6693-g89p, GHSA-8q5v-6pqq-x66h, GHSA-mmjf-rqrv-855v). Bump to 10.0.10, the same fix already applied in #132. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JerrettDavis <mxjerrett@gmail.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 2c4efc3 commit 236193d

7 files changed

Lines changed: 18 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fetch-depth: 0
3737

3838
- name: Setup .NET
39-
uses: actions/setup-dotnet@v5
39+
uses: actions/setup-dotnet@v6
4040
with:
4141
dotnet-version: ${{ env.DOTNET_VERSION }}
4242

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fetch-depth: 0
3838

3939
- name: Setup .NET
40-
uses: actions/setup-dotnet@v5
40+
uses: actions/setup-dotnet@v6
4141
with:
4242
dotnet-version: ${{ env.DOTNET_VERSION }}
4343

@@ -76,7 +76,7 @@ jobs:
7676
uses: actions/checkout@v7
7777

7878
- name: Setup .NET
79-
uses: actions/setup-dotnet@v5
79+
uses: actions/setup-dotnet@v6
8080
with:
8181
dotnet-version: ${{ env.DOTNET_VERSION }}
8282

.github/workflows/dependency-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v7
3838

3939
- name: Setup .NET
40-
uses: actions/setup-dotnet@v5
40+
uses: actions/setup-dotnet@v6
4141
with:
4242
dotnet-version: ${{ env.DOTNET_VERSION }}
4343

@@ -114,7 +114,7 @@ jobs:
114114
path: base
115115

116116
- name: Setup .NET
117-
uses: actions/setup-dotnet@v5
117+
uses: actions/setup-dotnet@v6
118118
with:
119119
dotnet-version: ${{ env.DOTNET_VERSION }}
120120

.github/workflows/pr-validation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
fetch-depth: 0
2929

3030
- name: Setup .NET
31-
uses: actions/setup-dotnet@v5
31+
uses: actions/setup-dotnet@v6
3232
with:
3333
dotnet-version: ${{ env.DOTNET_VERSION }}
3434

@@ -64,7 +64,7 @@ jobs:
6464
fetch-depth: 0
6565

6666
- name: Setup .NET
67-
uses: actions/setup-dotnet@v5
67+
uses: actions/setup-dotnet@v6
6868
with:
6969
dotnet-version: ${{ env.DOTNET_VERSION }}
7070

@@ -92,7 +92,7 @@ jobs:
9292
uses: actions/checkout@v7
9393

9494
- name: Setup .NET
95-
uses: actions/setup-dotnet@v5
95+
uses: actions/setup-dotnet@v6
9696
with:
9797
dotnet-version: ${{ env.DOTNET_VERSION }}
9898

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fetch-depth: 0
3333

3434
- name: Setup .NET
35-
uses: actions/setup-dotnet@v5
35+
uses: actions/setup-dotnet@v6
3636
with:
3737
dotnet-version: ${{ env.DOTNET_VERSION }}
3838

@@ -198,7 +198,7 @@ jobs:
198198
uses: actions/checkout@v7
199199

200200
- name: Setup .NET
201-
uses: actions/setup-dotnet@v5
201+
uses: actions/setup-dotnet@v6
202202
with:
203203
dotnet-version: ${{ env.DOTNET_VERSION }}
204204

build/_build.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.9" />
23+
<!-- 10.0.10 patches GHSA-cvvh-rhrc-wg4q / GHSA-g8r8-53c2-pm3f / GHSA-23rf-6693-g89p /
24+
GHSA-8q5v-6pqq-x66h / GHSA-mmjf-rqrv-855v (high severity) present in 10.0.9. -->
25+
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.10" />
2426
<PackageReference Include="NuGet.Packaging" Version="7.6.0" />
2527
</ItemGroup>
2628

tests/PokManager.Web.Tests/PokManager.Web.Tests.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
<PackageReference Include="TinyBDD" Version="0.19.28" />
1616
<PackageReference Include="xunit" Version="2.9.3" />
1717
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
18+
<!-- Forced transitive upgrade: bunit 2.7.2 pulls AngleSharp 1.4.0, which is vulnerable
19+
to GHSA-pgww-w46g-26qg / CVE-2026-54570 (mXSS via annotation-xml HTML integration
20+
point bypass, moderate). 1.5.0 is the first patched release; pin to the latest
21+
stable line. -->
22+
<PackageReference Include="AngleSharp" Version="1.5.2" />
1823
</ItemGroup>
1924

2025
<ItemGroup>

0 commit comments

Comments
 (0)