Skip to content

Commit a776b36

Browse files
committed
Setup dotnet action v 4
1 parent 895d3c8 commit a776b36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/github/src/Actions.Workflow.Extensions/StepExtensions.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static Job ActionsUploadArtifact(
4646
this Step step,
4747
string name = "artifacts",
4848
string path = "artifacts",
49-
string version = "v3")
49+
string version = "v4")
5050
{
5151
step.Name("Upload Artifacts")
5252
.Uses($"actions/upload-artifact@{version}")
@@ -80,7 +80,7 @@ public static Job ActionsSetupDotNet(this Step step, params string[] versions)
8080
{
8181
step
8282
.Name("Setup Dotnet")
83-
.Uses("actions/setup-dotnet@v3")
83+
.Uses($"actions/setup-dotnet")
8484
.With(("dotnet-version", string.Join(" ", versions)));
8585
return step.Job;
8686
}

0 commit comments

Comments
 (0)