File tree 2 files changed +14
-14
lines changed
2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 91
91
git config --global core.longpaths true
92
92
93
93
- name : Git Checkout
94
- uses : actions/checkout@v4
94
+ uses : actions/checkout@v2
95
95
with :
96
96
fetch-depth : 0
97
97
submodules : recursive
@@ -101,7 +101,7 @@ jobs:
101
101
run : git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
102
102
103
103
- name : Git Setup LFS Cache
104
- uses : actions/cache@v4
104
+ uses : actions/cache@v2
105
105
id : lfs-cache
106
106
with :
107
107
path : .git/lfs
@@ -111,18 +111,18 @@ jobs:
111
111
run : git lfs pull
112
112
113
113
- name : NuGet Install
114
- uses : NuGet/setup-nuget@v2
114
+ uses : NuGet/setup-nuget@v1
115
115
116
116
- name : NuGet Setup Cache
117
- uses : actions/cache@v4
117
+ uses : actions/cache@v2
118
118
id : nuget-cache
119
119
with :
120
120
path : ~/.nuget
121
121
key : ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props', '**/*.targets') }}
122
122
restore-keys : ${{ runner.os }}-nuget-
123
123
124
124
- name : DotNet Setup
125
- uses : actions/setup-dotnet@v4
125
+ uses : actions/setup-dotnet@v1
126
126
with :
127
127
dotnet-version : |
128
128
6.0.x
@@ -182,16 +182,16 @@ jobs:
182
182
git config --global core.longpaths true
183
183
184
184
- name : Git Checkout
185
- uses : actions/checkout@v4
185
+ uses : actions/checkout@v2
186
186
with :
187
187
fetch-depth : 0
188
188
submodules : recursive
189
189
190
190
- name : NuGet Install
191
- uses : NuGet/setup-nuget@v2
191
+ uses : NuGet/setup-nuget@v1
192
192
193
193
- name : NuGet Setup Cache
194
- uses : actions/cache@v4
194
+ uses : actions/cache@v2
195
195
id : nuget-cache
196
196
with :
197
197
path : ~/.nuget
Original file line number Diff line number Diff line change 24
24
git config --global core.longpaths true
25
25
26
26
- name : Git Checkout
27
- uses : actions/checkout@v4
27
+ uses : actions/checkout@v2
28
28
with :
29
29
fetch-depth : 0
30
30
submodules : recursive
34
34
run : git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
35
35
36
36
- name : Git Setup LFS Cache
37
- uses : actions/cache@v4
37
+ uses : actions/cache@v2
38
38
id : lfs-cache
39
39
with :
40
40
path : .git/lfs
@@ -44,10 +44,10 @@ jobs:
44
44
run : git lfs pull
45
45
46
46
- name : NuGet Install
47
- uses : NuGet/setup-nuget@v2
47
+ uses : NuGet/setup-nuget@v1
48
48
49
49
- name : NuGet Setup Cache
50
- uses : actions/cache@v4
50
+ uses : actions/cache@v2
51
51
id : nuget-cache
52
52
with :
53
53
path : ~/.nuget
@@ -68,14 +68,14 @@ jobs:
68
68
XUNIT_PATH : .\tests\ImageSharp.Tests # Required for xunit
69
69
70
70
- name : Export Failed Output
71
- uses : actions/upload-artifact@v4
71
+ uses : actions/upload-artifact@v2
72
72
if : failure()
73
73
with :
74
74
name : actual_output_${{ runner.os }}_${{ matrix.options.framework }}${{ matrix.options.runtime }}.zip
75
75
path : tests/Images/ActualOutput/
76
76
77
77
- name : Codecov Update
78
- uses : codecov/codecov-action@v4
78
+ uses : codecov/codecov-action@v1
79
79
if : matrix.options.codecov == true && startsWith(github.repository, 'SixLabors')
80
80
with :
81
81
flags : unittests
You can’t perform that action at this time.
0 commit comments