@@ -39,10 +39,10 @@ jobs:
3939
4040 steps :
4141 - name : Checkout repository
42- uses : actions/checkout@v2
42+ uses : actions/checkout@v3
4343 with :
4444 fetch-depth : 0
45- - uses : actions/setup-dotnet@v1
45+ - uses : actions/setup-dotnet@v2
4646 with :
4747 dotnet-version : " 6.0.x"
4848
5252 tools : licensefinder
5353
5454 - name : Enable NuGet cache
55- uses : actions/cache@v2.1.7
55+ uses : actions/cache@v3.0.8
5656 with :
5757 path : ~/.nuget/packages
5858 key : ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
@@ -88,23 +88,24 @@ jobs:
8888 runs-on : ubuntu-latest
8989 steps :
9090 - name : Set up JDK 11
91- uses : actions/setup-java@v1
91+ uses : actions/setup-java@v3
9292 with :
93- java-version : 1.11
93+ distribution : ' zulu'
94+ java-version : ' 11'
9495
95- - uses : actions/setup-dotnet@v1
96+ - uses : actions/setup-dotnet@v2
9697 with :
9798 dotnet-version : " 6.0.x"
9899
99100 - name : Enable NuGet cache
100- uses : actions/cache@v2.1.7
101+ uses : actions/cache@v3.0.8
101102 with :
102103 path : ~/.nuget/packages
103104 key : ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
104105 restore-keys : |
105106 ${{ runner.os }}-nuget
106107
107- - uses : actions/checkout@v2
108+ - uses : actions/checkout@v3
108109 with :
109110 fetch-depth : 0
110111
@@ -144,7 +145,7 @@ jobs:
144145 run : dotnet sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
145146 working-directory : ./src
146147
147- - uses : codecov/codecov-action@v2
148+ - uses : codecov/codecov-action@v3
148149 with :
149150 token : ${{ secrets.CODECOV_TOKEN }}
150151 directory : " src/${{ env.TEST_RESULTS }}"
@@ -173,16 +174,16 @@ jobs:
173174
174175 steps :
175176 - name : Checkout repository
176- uses : actions/checkout@v2
177+ uses : actions/checkout@v3
177178 with :
178179 fetch-depth : 0
179180
180- - uses : actions/setup-dotnet@v1
181+ - uses : actions/setup-dotnet@v2
181182 with :
182183 dotnet-version : " 6.0.x"
183184
184185 - name : Enable NuGet cache
185- uses : actions/cache@v2.1.7
186+ uses : actions/cache@v3.0.8
186187 with :
187188 path : ~/.nuget/packages
188189 key : ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
@@ -198,7 +199,7 @@ jobs:
198199
199200 - name : Determine Version
200201 id : gitversion
201- uses :
gittools/actions/gitversion/[email protected] .11 202+ uses :
gittools/actions/gitversion/[email protected] .13 202203 with :
203204 useConfigFile : true
204205 updateAssemblyInfo : true
@@ -227,15 +228,15 @@ jobs:
227228
228229 - name : Upload Nuget
229230 if : ${{ matrix.os == 'ubuntu-latest' }}
230- uses : actions/upload-artifact@v2.3.1
231+ uses : actions/upload-artifact@v3.1.0
231232 with :
232233 name : nuget
233234 path : ${{ github.workspace }}/release/*.nupkg
234235 retention-days : 30
235236
236237 - name : Upload Zipped Plug-ins
237238 if : ${{ matrix.os == 'ubuntu-latest' }}
238- uses : actions/upload-artifact@v2.3.1
239+ uses : actions/upload-artifact@v3.1.0
239240 with :
240241 name : plug-ins
241242 path : ${{ github.workspace }}/src/Plugins/release/*.zip
@@ -247,7 +248,7 @@ jobs:
247248 needs : [build, unit-test]
248249 if : ${{ ! ( github.event.inputs.nuget ) }}
249250 steps :
250- - uses : actions/download-artifact@v2
251+ - uses : actions/download-artifact@v3
251252 id : download
252253
253254 - name : List artifacts
@@ -256,7 +257,7 @@ jobs:
256257 - name : Install grp
257258 run : dotnet tool install gpr -g
258259
259- - uses : actions/setup-dotnet@v1
260+ - uses : actions/setup-dotnet@v2
260261 env :
261262 NUGET_AUTH_TOKEN : ${{secrets.GITHUB_TOKEN}}
262263 with :
@@ -272,7 +273,7 @@ jobs:
272273 needs : [build, unit-test]
273274 if : ${{ github.event.inputs.nuget }}
274275 steps :
275- - uses : actions/download-artifact@v2
276+ - uses : actions/download-artifact@v3
276277 id : download
277278
278279 - name : List artifacts
@@ -281,7 +282,7 @@ jobs:
281282 - name : Install grp
282283 run : dotnet tool install gpr -g
283284
284- - uses : actions/setup-dotnet@v1
285+ - uses : actions/setup-dotnet@v2
285286 env :
286287 NUGET_AUTH_TOKEN : ${{secrets.GITHUB_TOKEN}}
287288 with :
@@ -300,11 +301,11 @@ jobs:
300301 MAJORMINORPATCH : ${{ needs.build.outputs.majorMinorPatch }}
301302
302303 steps :
303- - uses : actions/checkout@v2
304+ - uses : actions/checkout@v3
304305 with :
305306 fetch-depth : 0
306307
307- - uses : actions/download-artifact@v2
308+ - uses : actions/download-artifact@v3
308309 id : download
309310
310311 - name : List artifacts
@@ -314,7 +315,7 @@ jobs:
314315 run : dotnet nuget push ${{ steps.download.outputs.download-path }}/nuget/*.nupkg -s https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET }} --skip-duplicate
315316
316317 - name : Extract owner and repo
317- uses : jungwinter/split@v1
318+ uses : jungwinter/split@v2
318319 id : repo
319320 with :
320321 seperator : " /"
0 commit comments