@@ -19,17 +19,17 @@ jobs:
19
19
fail-fast : false
20
20
matrix :
21
21
os : [ubuntu-latest, windows-latest, macos-latest]
22
- target : [netstandard2.0, netstandard2.1, net6.0]
22
+ target : [netstandard2.0, netstandard2.1, net6.0, net462 ]
23
23
env :
24
24
LIB_PROJ : src/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib.csproj
25
25
steps :
26
- - uses : actions/checkout@v3
26
+ - uses : actions/checkout@v4
27
27
with :
28
28
ref : ${{ github.events.inputs.tag }}
29
29
fetch-depth : 0
30
30
31
31
- name : Setup .NET
32
- uses : actions/setup-dotnet@v1
32
+ uses : actions/setup-dotnet@v4
33
33
with :
34
34
dotnet-version : ' 6.0.x'
35
35
@@ -51,13 +51,13 @@ jobs:
51
51
os : [ubuntu, macos]
52
52
target : [net6.0]
53
53
steps :
54
- - uses : actions/checkout@v2
54
+ - uses : actions/checkout@v4
55
55
with :
56
56
fetch-depth : 0
57
57
58
58
- name : Setup .NET Core
59
59
if : matrix.target == 'net6.0'
60
- uses : actions/setup-dotnet@v1
60
+ uses : actions/setup-dotnet@v4
61
61
with :
62
62
dotnet-version : ' 6.0.x'
63
63
@@ -79,12 +79,12 @@ jobs:
79
79
DOTCOVER_PKG : jetbrains.dotcover.commandlinetools
80
80
COVER_SNAPSHOT : SharpZipLib.dcvr
81
81
steps :
82
- - uses : actions/checkout@v3
82
+ - uses : actions/checkout@v4
83
83
with :
84
84
fetch-depth : 0
85
85
86
86
- name : Setup .NET
87
- uses : actions/setup-dotnet@v1
87
+ uses : actions/setup-dotnet@v4
88
88
with :
89
89
dotnet-version : ' 6.0.x'
90
90
@@ -110,7 +110,7 @@ jobs:
110
110
files : dotcover-report.xml
111
111
112
112
- name : Upload coverage snapshot artifact
113
- uses : actions/upload-artifact@v2
113
+ uses : actions/upload-artifact@v4
114
114
with :
115
115
name : Code coverage snapshot
116
116
path : ${{env.COVER_SNAPSHOT}}
@@ -124,13 +124,13 @@ jobs:
124
124
PKG_PROPS : ' /p:ContinuousIntegrationBuild=true /p:EmbedUntrackedSources=true'
125
125
126
126
steps :
127
- - uses : actions/checkout@v2
127
+ - uses : actions/checkout@v4
128
128
with :
129
129
ref : ${{ github.events.inputs.tag }}
130
130
fetch-depth : 0
131
131
132
132
- name : Setup .NET Core
133
- uses : actions/setup-dotnet@v1
133
+ uses : actions/setup-dotnet@v4
134
134
with :
135
135
dotnet-version : ' 6.0.x'
136
136
@@ -159,7 +159,7 @@ jobs:
159
159
run : dotnet pack ${{ env.PKG_PROJ }} -c Release --output dist ${{ env.PKG_PROPS }} /p:Version=${{ env.PKG_VERSION }}
160
160
161
161
- name : Upload nuget package artifact
162
- uses : actions/upload-artifact@v2
162
+ uses : actions/upload-artifact@v4
163
163
with :
164
164
name : Nuget package
165
165
path : dist/*.nupkg
0 commit comments