Skip to content

Commit 5e36e17

Browse files
committed
Updates dependencies and GitHub Actions
Adds Dependabot configuration for NuGet package updates. Adds a funding file. Removes outdated instruction files. Updates GitHub Actions workflows to use newer versions of actions/checkout, actions/setup-node, actions/configure-pages, actions/upload-pages-artifact, and actions/setup-dotnet. Updates copyright in common properties to dynamically reflect the current year. Updates AsyncFixer and MinVer package versions.
1 parent d662a8f commit 5e36e17

7 files changed

Lines changed: 23 additions & 121 deletions

File tree

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: exceptionless

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
4+
- package-ecosystem: nuget
5+
directory: "/"
6+
schedule:
7+
interval: weekly

.github/instructions/general.instructions.md

Lines changed: 0 additions & 73 deletions
This file was deleted.

.github/instructions/testing.instructions.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/workflows/copilot-setup-steps.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@ jobs:
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222

23-
- name: Setup .NET 9.x
24-
uses: actions/setup-dotnet@v4
23+
- name: Setup .NET Core
24+
uses: actions/setup-dotnet@v5
2525
with:
26-
dotnet-version: 9.x
26+
dotnet-version: |
27+
8.0.x
28+
9.0.x
29+
10.0.x

.github/workflows/docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525

2626
- name: Setup Node.js
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@v6
2828
with:
29-
node-version: 22
29+
node-version: 24
3030

3131
- name: Clean npm cache and dependencies
3232
run: |
@@ -45,10 +45,10 @@ jobs:
4545
NODE_ENV: production
4646

4747
- name: Setup Pages
48-
uses: actions/configure-pages@v4
48+
uses: actions/configure-pages@v5
4949

5050
- name: Upload artifact
51-
uses: actions/upload-pages-artifact@v3
51+
uses: actions/upload-pages-artifact@v4
5252
with:
5353
path: docs/.vitepress/dist
5454

build/common.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<MinVerSkip Condition="'$(Configuration)' == 'Debug'">true</MinVerSkip>
1111
<MinVerTagPrefix>v</MinVerTagPrefix>
1212

13-
<Copyright>Copyright (c) 2025 Foundatio. All rights reserved.</Copyright>
13+
<Copyright>Copyright © $([System.DateTime]::Now.ToString(yyyy)) Foundatio. All rights reserved.</Copyright>
1414
<Authors>FoundatioFx</Authors>
1515
<ImplicitUsings>enable</ImplicitUsings>
1616
<Nullable>enable</Nullable>
@@ -39,8 +39,8 @@
3939

4040
<ItemGroup>
4141
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
42-
<PackageReference Include="AsyncFixer" Version="1.6.0" PrivateAssets="All" />
43-
<PackageReference Include="MinVer" Version="6.0.0" PrivateAssets="All" />
42+
<PackageReference Include="AsyncFixer" Version="2.1.0" PrivateAssets="All" />
43+
<PackageReference Include="MinVer" Version="6.1.0" PrivateAssets="All" />
4444
</ItemGroup>
4545

4646
<ItemGroup>

0 commit comments

Comments
 (0)