Skip to content

Commit

Permalink
Setup dotnet action v 4
Browse files Browse the repository at this point in the history
  • Loading branch information
damianh committed Nov 3, 2024
1 parent 895d3c8 commit a776b36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/github/src/Actions.Workflow.Extensions/StepExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static Job ActionsUploadArtifact(
this Step step,
string name = "artifacts",
string path = "artifacts",
string version = "v3")
string version = "v4")
{
step.Name("Upload Artifacts")
.Uses($"actions/upload-artifact@{version}")
Expand Down Expand Up @@ -80,7 +80,7 @@ public static Job ActionsSetupDotNet(this Step step, params string[] versions)
{
step
.Name("Setup Dotnet")
.Uses("actions/setup-dotnet@v3")
.Uses($"actions/setup-dotnet")
.With(("dotnet-version", string.Join(" ", versions)));
return step.Job;
}
Expand Down

0 comments on commit a776b36

Please sign in to comment.