Skip to content

Commit 6d54c3b

Browse files
committed
undo yaml changes
1 parent caeb6f2 commit 6d54c3b

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/build-and-test.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
git config --global core.longpaths true
9292
9393
- name: Git Checkout
94-
uses: actions/checkout@v4
94+
uses: actions/checkout@v2
9595
with:
9696
fetch-depth: 0
9797
submodules: recursive
@@ -101,7 +101,7 @@ jobs:
101101
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
102102

103103
- name: Git Setup LFS Cache
104-
uses: actions/cache@v4
104+
uses: actions/cache@v2
105105
id: lfs-cache
106106
with:
107107
path: .git/lfs
@@ -111,18 +111,18 @@ jobs:
111111
run: git lfs pull
112112

113113
- name: NuGet Install
114-
uses: NuGet/setup-nuget@v2
114+
uses: NuGet/setup-nuget@v1
115115

116116
- name: NuGet Setup Cache
117-
uses: actions/cache@v4
117+
uses: actions/cache@v2
118118
id: nuget-cache
119119
with:
120120
path: ~/.nuget
121121
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props', '**/*.targets') }}
122122
restore-keys: ${{ runner.os }}-nuget-
123123

124124
- name: DotNet Setup
125-
uses: actions/setup-dotnet@v4
125+
uses: actions/setup-dotnet@v1
126126
with:
127127
dotnet-version: |
128128
6.0.x
@@ -182,16 +182,16 @@ jobs:
182182
git config --global core.longpaths true
183183
184184
- name: Git Checkout
185-
uses: actions/checkout@v4
185+
uses: actions/checkout@v2
186186
with:
187187
fetch-depth: 0
188188
submodules: recursive
189189

190190
- name: NuGet Install
191-
uses: NuGet/setup-nuget@v2
191+
uses: NuGet/setup-nuget@v1
192192

193193
- name: NuGet Setup Cache
194-
uses: actions/cache@v4
194+
uses: actions/cache@v2
195195
id: nuget-cache
196196
with:
197197
path: ~/.nuget

.github/workflows/code-coverage.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
git config --global core.longpaths true
2525
2626
- name: Git Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v2
2828
with:
2929
fetch-depth: 0
3030
submodules: recursive
@@ -34,7 +34,7 @@ jobs:
3434
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
3535

3636
- name: Git Setup LFS Cache
37-
uses: actions/cache@v4
37+
uses: actions/cache@v2
3838
id: lfs-cache
3939
with:
4040
path: .git/lfs
@@ -44,10 +44,10 @@ jobs:
4444
run: git lfs pull
4545

4646
- name: NuGet Install
47-
uses: NuGet/setup-nuget@v2
47+
uses: NuGet/setup-nuget@v1
4848

4949
- name: NuGet Setup Cache
50-
uses: actions/cache@v4
50+
uses: actions/cache@v2
5151
id: nuget-cache
5252
with:
5353
path: ~/.nuget
@@ -68,14 +68,14 @@ jobs:
6868
XUNIT_PATH: .\tests\ImageSharp.Tests # Required for xunit
6969

7070
- name: Export Failed Output
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v2
7272
if: failure()
7373
with:
7474
name: actual_output_${{ runner.os }}_${{ matrix.options.framework }}${{ matrix.options.runtime }}.zip
7575
path: tests/Images/ActualOutput/
7676

7777
- name: Codecov Update
78-
uses: codecov/codecov-action@v4
78+
uses: codecov/codecov-action@v1
7979
if: matrix.options.codecov == true && startsWith(github.repository, 'SixLabors')
8080
with:
8181
flags: unittests

0 commit comments

Comments
 (0)