File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
15
15
if : " startsWith(github.event.head_commit.message, 'Release v')"
16
16
17
17
steps :
18
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v4
19
19
20
20
- name : Use .NET ${{ env.DOTNET_VERSION }}
21
- uses : actions/setup-dotnet@v1
21
+ uses : actions/setup-dotnet@v4
22
22
with :
23
23
dotnet-version : ${{ env.DOTNET_VERSION }}
24
24
29
29
run : dotnet pack ${{ env.BUILD_TARGET }} -c Release --no-build
30
30
31
31
- name : Upload artifacts
32
- uses : actions/upload-artifact@v2.3.1
32
+ uses : actions/upload-artifact@v4
33
33
with :
34
34
name : nuget-packages
35
35
path : " **/*.nupkg"
@@ -43,13 +43,13 @@ jobs:
43
43
44
44
steps :
45
45
- name : Use NuGet
46
- uses : NuGet/setup-nuget@v1.0.5
46
+ uses : NuGet/setup-nuget@v2
47
47
with :
48
48
nuget-version : latest
49
49
nuget-api-key : ${{ secrets.NUGET_API_KEY }}
50
50
51
51
- name : Fetch artifacts
52
- uses : actions/download-artifact@v2.1.0
52
+ uses : actions/download-artifact@v4
53
53
with :
54
54
name : nuget-packages
55
55
You can’t perform that action at this time.
0 commit comments