File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3434
3535 steps :
3636 - name : Checkout
37- uses : actions/checkout@v4
37+ uses : actions/checkout@v6
3838 with :
3939 fetch-depth : 0
4040
4848 continue-on-error : true
4949
5050 - name : Cache NuGet packages
51- uses : actions/cache@v4
51+ uses : actions/cache@v5
5252 with :
5353 path : ~/.nuget/packages
5454 key : ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
7575
7676 steps :
7777 - name : Checkout
78- uses : actions/checkout@v4
78+ uses : actions/checkout@v6
7979
8080 - name : Setup .NET
8181 uses : actions/setup-dotnet@v5
9393 run : dotnet pack --configuration Release --no-restore --output ./artifacts
9494
9595 - name : Upload artifacts
96- uses : actions/upload-artifact@v4
96+ uses : actions/upload-artifact@v7
9797 with :
9898 name : nuget-packages-${{ github.sha }}
9999 path : ./artifacts/*.nupkg
Original file line number Diff line number Diff line change 5252 continue-on-error : true
5353
5454 - name : Cache NuGet packages
55- uses : actions/cache@v4
55+ uses : actions/cache@v5
5656 with :
5757 path : ~/.nuget/packages
5858 key : ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
Original file line number Diff line number Diff line change 6767 continue-on-error : true
6868
6969 - name : Cache NuGet packages
70- uses : actions/cache@v4
70+ uses : actions/cache@v5
7171 with :
7272 path : ~/.nuget/packages
7373 key : ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
@@ -104,7 +104,7 @@ jobs:
104104 done
105105
106106 - name : Upload artifacts
107- uses : actions/upload-artifact@v4
107+ uses : actions/upload-artifact@v7
108108 with :
109109 name : nuget-packages-${{ github.sha }}
110110 path : ./artifacts/*.nupkg
@@ -123,7 +123,7 @@ jobs:
123123
124124 steps :
125125 - name : Download artifacts
126- uses : actions/download-artifact@v4
126+ uses : actions/download-artifact@v8
127127 with :
128128 name : nuget-packages-${{ github.sha }}
129129 path : ./artifacts
You can’t perform that action at this time.
0 commit comments