Skip to content

Commit 709d47b

Browse files
committed
chores: update dependencies
1 parent 5d7bafb commit 709d47b

3 files changed

Lines changed: 3 additions & 18 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: ubuntu-latest
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 0
3232
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
@@ -42,7 +42,7 @@ jobs:
4242
NugetKey: ${{ secrets.NUGET_KEY }}
4343
GithubToken: ${{ secrets.GITHUB_TOKEN }}
4444
- name: 'Publish: packages'
45-
uses: actions/upload-artifact@v4
45+
uses: actions/upload-artifact@v5
4646
with:
4747
name: packages
4848
path: artifacts/packages

build/Build.cs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,6 @@
1717
using static Nuke.Common.IO.PathConstruction;
1818
using static Nuke.Common.Tools.DotNet.DotNetTasks;
1919

20-
[GitHubActions(
21-
"continuous",
22-
GitHubActionsImage.UbuntuLatest,
23-
FetchDepth = 0,
24-
On = [GitHubActionsTrigger.Push],
25-
PublishArtifacts = true,
26-
InvokedTargets = [nameof(Compile), nameof(Test), nameof(Pack)])]
27-
[GitHubActions(
28-
"release",
29-
GitHubActionsImage.UbuntuLatest,
30-
FetchDepth = 0,
31-
OnPushTags = [@"\d+\.\d+\.\d+"],
32-
PublishArtifacts = true,
33-
InvokedTargets = [nameof(Push), nameof(PushGithubNuget)],
34-
ImportSecrets = [nameof(NugetKey), nameof(GithubToken)])]
3520
class Build : NukeBuild
3621
{
3722
/// Support plugins are available for:

src/Scarlet.System.Text.Json.DateTimeConverter.Tests/Scarlet.System.Text.Json.DateTimeConverter.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<PrivateAssets>all</PrivateAssets>
2525
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2626
</PackageReference>
27-
<PackageReference Include="JunitXml.TestLogger" Version="4.1.0">
27+
<PackageReference Include="JunitXml.TestLogger" Version="7.1.0">
2828
<PrivateAssets>all</PrivateAssets>
2929
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3030
</PackageReference>

0 commit comments

Comments
 (0)