@@ -19,17 +19,17 @@ jobs:
1919 fail-fast : false
2020 matrix :
2121 os : [ubuntu-latest, windows-latest, macos-latest]
22- target : [netstandard2.0, netstandard2.1, net6.0]
22+ target : [netstandard2.0, netstandard2.1, net6.0, net462 ]
2323 env :
2424 LIB_PROJ : src/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib.csproj
2525 steps :
26- - uses : actions/checkout@v3
26+ - uses : actions/checkout@v4
2727 with :
2828 ref : ${{ github.events.inputs.tag }}
2929 fetch-depth : 0
3030
3131 - name : Setup .NET
32- uses : actions/setup-dotnet@v1
32+ uses : actions/setup-dotnet@v4
3333 with :
3434 dotnet-version : ' 6.0.x'
3535
@@ -51,13 +51,13 @@ jobs:
5151 os : [ubuntu, macos]
5252 target : [net6.0]
5353 steps :
54- - uses : actions/checkout@v2
54+ - uses : actions/checkout@v4
5555 with :
5656 fetch-depth : 0
5757
5858 - name : Setup .NET Core
5959 if : matrix.target == 'net6.0'
60- uses : actions/setup-dotnet@v1
60+ uses : actions/setup-dotnet@v4
6161 with :
6262 dotnet-version : ' 6.0.x'
6363
@@ -79,12 +79,12 @@ jobs:
7979 DOTCOVER_PKG : jetbrains.dotcover.commandlinetools
8080 COVER_SNAPSHOT : SharpZipLib.dcvr
8181 steps :
82- - uses : actions/checkout@v3
82+ - uses : actions/checkout@v4
8383 with :
8484 fetch-depth : 0
8585
8686 - name : Setup .NET
87- uses : actions/setup-dotnet@v1
87+ uses : actions/setup-dotnet@v4
8888 with :
8989 dotnet-version : ' 6.0.x'
9090
@@ -110,7 +110,7 @@ jobs:
110110 files : dotcover-report.xml
111111
112112 - name : Upload coverage snapshot artifact
113- uses : actions/upload-artifact@v2
113+ uses : actions/upload-artifact@v4
114114 with :
115115 name : Code coverage snapshot
116116 path : ${{env.COVER_SNAPSHOT}}
@@ -124,13 +124,13 @@ jobs:
124124 PKG_PROPS : ' /p:ContinuousIntegrationBuild=true /p:EmbedUntrackedSources=true'
125125
126126 steps :
127- - uses : actions/checkout@v2
127+ - uses : actions/checkout@v4
128128 with :
129129 ref : ${{ github.events.inputs.tag }}
130130 fetch-depth : 0
131131
132132 - name : Setup .NET Core
133- uses : actions/setup-dotnet@v1
133+ uses : actions/setup-dotnet@v4
134134 with :
135135 dotnet-version : ' 6.0.x'
136136
@@ -159,7 +159,7 @@ jobs:
159159 run : dotnet pack ${{ env.PKG_PROJ }} -c Release --output dist ${{ env.PKG_PROPS }} /p:Version=${{ env.PKG_VERSION }}
160160
161161 - name : Upload nuget package artifact
162- uses : actions/upload-artifact@v2
162+ uses : actions/upload-artifact@v4
163163 with :
164164 name : Nuget package
165165 path : dist/*.nupkg
0 commit comments