|
45 | 45 | - name: Build
|
46 | 46 | run: ARCH=${{ matrix.arch }} ./dotnet-build runtime
|
47 | 47 | - name: Upload the intermediate results
|
48 |
| - uses: actions/upload-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 48 | + uses: actions/upload-artifact@v3.1.3 |
49 | 49 | with:
|
50 | 50 | name: runtime-${{ matrix.arch }}
|
51 | 51 | path: |
|
@@ -82,15 +82,15 @@ jobs:
|
82 | 82 | - name: Fix the repository ownership
|
83 | 83 | run: chown -R "$(id -u):$(id -g)" .
|
84 | 84 | - name: Download the previous stage's artifacts
|
85 |
| - uses: actions/download-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 85 | + uses: actions/download-artifact@v3.0.2 |
86 | 86 | with:
|
87 | 87 | name: runtime-${{ matrix.arch }}
|
88 | 88 | - name: Prepare
|
89 | 89 | run: ./dotnet-prepare msbuild
|
90 | 90 | - name: Build
|
91 | 91 | run: ARCH=${{ matrix.arch }} ./dotnet-build msbuild
|
92 | 92 | - name: Upload the intermediate results
|
93 |
| - uses: actions/upload-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 93 | + uses: actions/upload-artifact@v3.1.3 |
94 | 94 | with:
|
95 | 95 | name: msbuild-${{ matrix.arch }}
|
96 | 96 | path: |
|
@@ -127,15 +127,15 @@ jobs:
|
127 | 127 | - name: Fix the repository ownership
|
128 | 128 | run: chown -R "$(id -u):$(id -g)" .
|
129 | 129 | - name: Download the previous stage's artifacts
|
130 |
| - uses: actions/download-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 130 | + uses: actions/download-artifact@v3.0.2 |
131 | 131 | with:
|
132 | 132 | name: msbuild-${{ matrix.arch }}
|
133 | 133 | - name: Prepare
|
134 | 134 | run: ./dotnet-prepare roslyn
|
135 | 135 | - name: Build
|
136 | 136 | run: ARCH=${{ matrix.arch }} ./dotnet-build roslyn
|
137 | 137 | - name: Upload the intermediate results
|
138 |
| - uses: actions/upload-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 138 | + uses: actions/upload-artifact@v3.1.3 |
139 | 139 | with:
|
140 | 140 | name: roslyn-${{ matrix.arch }}
|
141 | 141 | path: |
|
@@ -172,15 +172,15 @@ jobs:
|
172 | 172 | - name: Fix the repository ownership
|
173 | 173 | run: chown -R "$(id -u):$(id -g)" .
|
174 | 174 | - name: Download the previous stage's artifacts
|
175 |
| - uses: actions/download-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 175 | + uses: actions/download-artifact@v3.0.2 |
176 | 176 | with:
|
177 | 177 | name: roslyn-${{ matrix.arch }}
|
178 | 178 | - name: Prepare
|
179 | 179 | run: ./dotnet-prepare aspnetcore
|
180 | 180 | - name: Build
|
181 | 181 | run: ARCH=${{ matrix.arch }} ./dotnet-build aspnetcore
|
182 | 182 | - name: Upload the intermediate results
|
183 |
| - uses: actions/upload-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 183 | + uses: actions/upload-artifact@v3.1.3 |
184 | 184 | with:
|
185 | 185 | name: aspnetcore-${{ matrix.arch }}
|
186 | 186 | path: |
|
@@ -217,15 +217,15 @@ jobs:
|
217 | 217 | - name: Fix the repository ownership
|
218 | 218 | run: chown -R "$(id -u):$(id -g)" .
|
219 | 219 | - name: Download the previous stage's artifacts
|
220 |
| - uses: actions/download-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 220 | + uses: actions/download-artifact@v3.0.2 |
221 | 221 | with:
|
222 | 222 | name: aspnetcore-${{ matrix.arch }}
|
223 | 223 | - name: Prepare
|
224 | 224 | run: ./dotnet-prepare sdk
|
225 | 225 | - name: Build
|
226 | 226 | run: ARCH=${{ matrix.arch }} ./dotnet-build sdk
|
227 | 227 | - name: Upload the intermediate results
|
228 |
| - uses: actions/upload-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 228 | + uses: actions/upload-artifact@v3.1.3 |
229 | 229 | with:
|
230 | 230 | name: sdk-${{ matrix.arch }}
|
231 | 231 | path: |
|
@@ -256,12 +256,12 @@ jobs:
|
256 | 256 | - name: Fix the repository ownership
|
257 | 257 | run: chown -R "$(id -u):$(id -g)" .
|
258 | 258 | - name: Download the ppc64le sdk artifacts
|
259 |
| - uses: actions/download-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 259 | + uses: actions/download-artifact@v3.0.2 |
260 | 260 | with:
|
261 | 261 | name: sdk-ppc64le
|
262 | 262 | if: ${{ !startsWith(github.ref, 'refs/tags/v6.') }}
|
263 | 263 | - name: Download the s390x sdk artifacts
|
264 |
| - uses: actions/download-artifact@v3 # Newer versions are not compatible with Ubuntu 18.04 |
| 264 | + uses: actions/download-artifact@v3.0.2 |
265 | 265 | with:
|
266 | 266 | name: sdk-s390x
|
267 | 267 | - name: Create a release
|
|
0 commit comments