Skip to content

Commit 10f6f09

Browse files
McKnight, Eric D.Copilot
authored andcommitted
deps: bump NuGet and GitHub Actions dependencies
Applies the pending Dependabot updates in a single verified change: NuGet (Directory.Packages.props): - LibGit2Sharp 0.31.0 -> 0.32.0 (security release; libgit2 v1.8.6) (#22) - AngleSharp 1.5.2 -> 1.6.0 (#21) GitHub Actions: - actions/checkout v4 -> v7 (#18) - actions/setup-dotnet v4 -> v6 (#17) - actions/deploy-pages v4 -> v5 (#20) - softprops/action-gh-release v2 -> v3 (#19) Verified locally: restore, Release build, dotnet format check, and the full test suite (352 passed) all green with the bumped package versions. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent ff89fdf commit 10f6f09

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/action-selftest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v7
2222
with:
2323
fetch-depth: 0
2424

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v7
1414

1515
- name: Setup .NET
16-
uses: actions/setup-dotnet@v4
16+
uses: actions/setup-dotnet@v6
1717
with:
1818
global-json-file: global.json
1919

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
image:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v7
2222

2323
- name: Log in to GHCR
2424
uses: docker/login-action@v4

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
build:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v7
2222
with:
2323
fetch-depth: 0 # git-revision-date needs full history
2424

2525
- name: Setup .NET
26-
uses: actions/setup-dotnet@v4
26+
uses: actions/setup-dotnet@v6
2727
with:
2828
global-json-file: global.json
2929

@@ -46,4 +46,4 @@ jobs:
4646
steps:
4747
- name: Deploy to GitHub Pages
4848
id: deployment
49-
uses: actions/deploy-pages@v4
49+
uses: actions/deploy-pages@v5

.github/workflows/packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
packages:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v7
2323

2424
- name: Setup .NET
25-
uses: actions/setup-dotnet@v4
25+
uses: actions/setup-dotnet@v6
2626
with:
2727
global-json-file: global.json
2828

@@ -87,6 +87,6 @@ jobs:
8787

8888
- name: Attach to release
8989
if: github.ref_type == 'tag'
90-
uses: softprops/action-gh-release@v2
90+
uses: softprops/action-gh-release@v3
9191
with:
9292
files: out/*

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<PackageVersion Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="10.0.10" />
1717
<PackageVersion Include="Microsoft.Extensions.Options" Version="10.0.10" />
1818
<PackageVersion Include="Microsoft.AspNetCore.WebSockets" Version="2.3.0" />
19-
<PackageVersion Include="AngleSharp" Version="1.5.2" />
20-
<PackageVersion Include="LibGit2Sharp" Version="0.31.0" />
19+
<PackageVersion Include="AngleSharp" Version="1.6.0" />
20+
<PackageVersion Include="LibGit2Sharp" Version="0.32.0" />
2121
<!-- Pinned to the 3.x line on purpose: ImageSharp 4.0 switched to the Six Labors Split
2222
License and fails the build without a registered license key (sixlabors.lic). Netdocs is
2323
a zero-config OSS tool distributed to users, so we stay on the Apache-2.0 3.1.x releases. -->

0 commit comments

Comments
 (0)