|
27 | 27 | - name: Build Bundle |
28 | 28 | run: ./gradlew :debian-platforms:buildArm32v7DebianBundle -Pversion=$RELEASE_VERSION -PpgVersion=$POSTGRES_VERSION |
29 | 29 | - name: Upload bundle |
30 | | - uses: actions/upload-artifact@v2 |
| 30 | + uses: actions/upload-artifact@v4 |
31 | 31 | with: |
32 | 32 | name: arm32v7DebianBundle |
33 | 33 | path: debian-platforms/build/tmp/buildArm32v7DebianBundle/bundle/postgres-linux-debian.txz |
|
55 | 55 | - name: Build Bundle |
56 | 56 | run: ./gradlew :debian-platforms:buildArm64v8DebianBundle -Pversion=$RELEASE_VERSION -PpgVersion=$POSTGRES_VERSION |
57 | 57 | - name: Upload bundle |
58 | | - uses: actions/upload-artifact@v2 |
| 58 | + uses: actions/upload-artifact@v4 |
59 | 59 | with: |
60 | 60 | name: arm64v8DebianBundle |
61 | 61 | path: debian-platforms/build/tmp/buildArm64v8DebianBundle/bundle/postgres-linux-debian.txz |
|
83 | 83 | - name: Build Bundle |
84 | 84 | run: ./gradlew :debian-platforms:buildPpc64leDebianBundle -Pversion=$RELEASE_VERSION -PpgVersion=$POSTGRES_VERSION |
85 | 85 | - name: Upload bundle |
86 | | - uses: actions/upload-artifact@v2 |
| 86 | + uses: actions/upload-artifact@v4 |
87 | 87 | with: |
88 | 88 | name: ppc64leDebianBundle |
89 | 89 | path: debian-platforms/build/tmp/buildPpc64leDebianBundle/bundle/postgres-linux-debian.txz |
@@ -111,7 +111,7 @@ jobs: |
111 | 111 | - name: Build Bundle |
112 | 112 | run: ./gradlew :alpine-platforms:buildArm32v6AlpineBundle -Pversion=$RELEASE_VERSION -PpgVersion=$POSTGRES_VERSION |
113 | 113 | - name: Upload bundle |
114 | | - uses: actions/upload-artifact@v2 |
| 114 | + uses: actions/upload-artifact@v4 |
115 | 115 | with: |
116 | 116 | name: arm32v6AlpineBundle |
117 | 117 | path: alpine-platforms/build/tmp/buildArm32v6AlpineBundle/bundle/postgres-linux-alpine_linux.txz |
@@ -139,7 +139,7 @@ jobs: |
139 | 139 | - name: Build Bundle |
140 | 140 | run: ./gradlew :alpine-platforms:buildArm64v8AlpineBundle -Pversion=$RELEASE_VERSION -PpgVersion=$POSTGRES_VERSION |
141 | 141 | - name: Upload bundle |
142 | | - uses: actions/upload-artifact@v2 |
| 142 | + uses: actions/upload-artifact@v4 |
143 | 143 | with: |
144 | 144 | name: arm64v8AlpineBundle |
145 | 145 | path: alpine-platforms/build/tmp/buildArm64v8AlpineBundle/bundle/postgres-linux-alpine_linux.txz |
@@ -167,7 +167,7 @@ jobs: |
167 | 167 | - name: Build Bundle |
168 | 168 | run: ./gradlew :alpine-platforms:buildPpc64leAlpineBundle -Pversion=$RELEASE_VERSION -PpgVersion=$POSTGRES_VERSION |
169 | 169 | - name: Upload bundle |
170 | | - uses: actions/upload-artifact@v2 |
| 170 | + uses: actions/upload-artifact@v4 |
171 | 171 | with: |
172 | 172 | name: ppc64leAlpineBundle |
173 | 173 | path: alpine-platforms/build/tmp/buildPpc64leAlpineBundle/bundle/postgres-linux-alpine_linux.txz |
@@ -196,7 +196,7 @@ jobs: |
196 | 196 | - name: Build Bundle |
197 | 197 | run: ./gradlew :alpine-lite-platforms:buildArm32v6AlpineLiteBundle -Pversion=$RELEASE_VERSION -PpgVersion=$POSTGRES_VERSION |
198 | 198 | - name: Upload bundle |
199 | | - uses: actions/upload-artifact@v2 |
| 199 | + uses: actions/upload-artifact@v4 |
200 | 200 | with: |
201 | 201 | name: arm32v6AlpineLiteBundle |
202 | 202 | path: alpine-lite-platforms/build/tmp/buildArm32v6AlpineLiteBundle/bundle/postgres-linux-alpine_linux.txz |
@@ -225,7 +225,7 @@ jobs: |
225 | 225 | - name: Build Bundle |
226 | 226 | run: ./gradlew :alpine-lite-platforms:buildArm64v8AlpineLiteBundle -Pversion=$RELEASE_VERSION -PpgVersion=$POSTGRES_VERSION |
227 | 227 | - name: Upload bundle |
228 | | - uses: actions/upload-artifact@v2 |
| 228 | + uses: actions/upload-artifact@v4 |
229 | 229 | with: |
230 | 230 | name: arm64v8AlpineLiteBundle |
231 | 231 | path: alpine-lite-platforms/build/tmp/buildArm64v8AlpineLiteBundle/bundle/postgres-linux-alpine_linux.txz |
@@ -254,7 +254,7 @@ jobs: |
254 | 254 | - name: Build Bundle |
255 | 255 | run: ./gradlew :alpine-lite-platforms:buildPpc64leAlpineLiteBundle -Pversion=$RELEASE_VERSION -PpgVersion=$POSTGRES_VERSION |
256 | 256 | - name: Upload bundle |
257 | | - uses: actions/upload-artifact@v2 |
| 257 | + uses: actions/upload-artifact@v4 |
258 | 258 | with: |
259 | 259 | name: ppc64leAlpineLiteBundle |
260 | 260 | path: alpine-lite-platforms/build/tmp/buildPpc64leAlpineLiteBundle/bundle/postgres-linux-alpine_linux.txz |
@@ -284,50 +284,50 @@ jobs: |
284 | 284 | echo "RELEASE_VERSION=$MILESTONE_VERSION" >> $GITHUB_ENV |
285 | 285 | echo "POSTGRES_VERSION=${MILESTONE_VERSION%.*}" >> $GITHUB_ENV |
286 | 286 | - name: Download bundle - arm32v7Debian |
287 | | - uses: actions/download-artifact@v2 |
| 287 | + uses: actions/download-artifact@v4 |
288 | 288 | with: |
289 | 289 | name: arm32v7DebianBundle |
290 | 290 | path: debian-platforms/build/tmp/buildArm32v7DebianBundle/bundle |
291 | 291 | - name: Download bundle - arm64v8Debian |
292 | | - uses: actions/download-artifact@v2 |
| 292 | + uses: actions/download-artifact@v4 |
293 | 293 | with: |
294 | 294 | name: arm64v8DebianBundle |
295 | 295 | path: debian-platforms/build/tmp/buildArm64v8DebianBundle/bundle |
296 | 296 | - name: Download bundle - ppc64leDebian |
297 | | - uses: actions/download-artifact@v2 |
| 297 | + uses: actions/download-artifact@v4 |
298 | 298 | with: |
299 | 299 | name: ppc64leDebianBundle |
300 | 300 | path: debian-platforms/build/tmp/buildPpc64leDebianBundle/bundle |
301 | 301 | - name: Download bundle - arm32v6Alpine |
302 | | - uses: actions/download-artifact@v2 |
| 302 | + uses: actions/download-artifact@v4 |
303 | 303 | with: |
304 | 304 | name: arm32v6AlpineBundle |
305 | 305 | path: alpine-platforms/build/tmp/buildArm32v6AlpineBundle/bundle |
306 | 306 | - name: Download bundle - arm64v8Alpine |
307 | | - uses: actions/download-artifact@v2 |
| 307 | + uses: actions/download-artifact@v4 |
308 | 308 | with: |
309 | 309 | name: arm64v8AlpineBundle |
310 | 310 | path: alpine-platforms/build/tmp/buildArm64v8AlpineBundle/bundle |
311 | 311 | - name: Download bundle - ppc64leAlpine |
312 | | - uses: actions/download-artifact@v2 |
| 312 | + uses: actions/download-artifact@v4 |
313 | 313 | with: |
314 | 314 | name: ppc64leAlpineBundle |
315 | 315 | path: alpine-platforms/build/tmp/buildPpc64leAlpineBundle/bundle |
316 | 316 | - name: Download bundle - arm32v6AlpineLite |
317 | 317 | if: ${{ startsWith(github.event.milestone.title, '10.') || startsWith(github.event.milestone.title, '11.') || startsWith(github.event.milestone.title, '12.') || startsWith(github.event.milestone.title, '13.') || startsWith(github.event.milestone.title, '14.') || startsWith(github.event.milestone.title, '15.') }} |
318 | | - uses: actions/download-artifact@v2 |
| 318 | + uses: actions/download-artifact@v4 |
319 | 319 | with: |
320 | 320 | name: arm32v6AlpineLiteBundle |
321 | 321 | path: alpine-lite-platforms/build/tmp/buildArm32v6AlpineLiteBundle/bundle |
322 | 322 | - name: Download bundle - arm64v8AlpineLite |
323 | 323 | if: ${{ startsWith(github.event.milestone.title, '10.') || startsWith(github.event.milestone.title, '11.') || startsWith(github.event.milestone.title, '12.') || startsWith(github.event.milestone.title, '13.') || startsWith(github.event.milestone.title, '14.') || startsWith(github.event.milestone.title, '15.') }} |
324 | | - uses: actions/download-artifact@v2 |
| 324 | + uses: actions/download-artifact@v4 |
325 | 325 | with: |
326 | 326 | name: arm64v8AlpineLiteBundle |
327 | 327 | path: alpine-lite-platforms/build/tmp/buildArm64v8AlpineLiteBundle/bundle |
328 | 328 | - name: Download bundle - ppc64leAlpineLite |
329 | 329 | if: ${{ startsWith(github.event.milestone.title, '10.') || startsWith(github.event.milestone.title, '11.') || startsWith(github.event.milestone.title, '12.') || startsWith(github.event.milestone.title, '13.') || startsWith(github.event.milestone.title, '14.') || startsWith(github.event.milestone.title, '15.') }} |
330 | | - uses: actions/download-artifact@v2 |
| 330 | + uses: actions/download-artifact@v4 |
331 | 331 | with: |
332 | 332 | name: ppc64leAlpineLiteBundle |
333 | 333 | path: alpine-lite-platforms/build/tmp/buildPpc64leAlpineLiteBundle/bundle |
|
0 commit comments