Skip to content

Commit 1c68ec4

Browse files
committed
Merge pull request #10893 from quarto-dev/gha/update-action
(cherry picked from commit 7d19807) Adapted to solved conflicts in .github/workflows/test-smokes.yml
1 parent 858be1b commit 1c68ec4

File tree

3 files changed

+20
-19
lines changed

3 files changed

+20
-19
lines changed

.github/workflows/create-release.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
# echo -e "Due to an issue with upstream dependency, the RHEL build may not included in this release." >> "release_note.md"
6666
6767
- name: Upload Artifact
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: News
7171
path: |
@@ -99,7 +99,7 @@ jobs:
9999
tar --owner=root --group=root -zcvf quarto-${{needs.configure.outputs.version}}.tar.gz *
100100
101101
- name: Upload Artifact
102-
uses: actions/upload-artifact@v3
102+
uses: actions/upload-artifact@v4
103103
with:
104104
name: Source
105105
path: ./quarto-${{needs.configure.outputs.version}}.tar.gz
@@ -132,7 +132,7 @@ jobs:
132132
popd
133133
134134
- name: Upload Artifact
135-
uses: actions/upload-artifact@v3
135+
uses: actions/upload-artifact@v4
136136
with:
137137
name: Deb Zip
138138
path: ./package/quarto-${{needs.configure.outputs.version}}-linux-amd64.tar.gz
@@ -165,7 +165,7 @@ jobs:
165165
popd
166166
167167
- name: Upload Artifact
168-
uses: actions/upload-artifact@v3
168+
uses: actions/upload-artifact@v4
169169
with:
170170
name: Deb Arm64 Zip
171171
path: ./package/quarto-${{needs.configure.outputs.version}}-linux-arm64.tar.gz
@@ -209,7 +209,7 @@ jobs:
209209
popd
210210
211211
- name: Upload Artifact
212-
uses: actions/upload-artifact@v3
212+
uses: actions/upload-artifact@v4
213213
with:
214214
name: RHEL Zip
215215
path: ./package/quarto-${{needs.configure.outputs.version}}-linux-rhel7-amd64.tar.gz
@@ -239,7 +239,7 @@ jobs:
239239
popd
240240
241241
- name: Upload Artifact
242-
uses: actions/upload-artifact@v3
242+
uses: actions/upload-artifact@v4
243243
with:
244244
name: Deb Arm64 Installer
245245
path: ./package/out/quarto-${{needs.configure.outputs.version}}-linux-arm64.deb
@@ -269,7 +269,7 @@ jobs:
269269
popd
270270
271271
- name: Upload Artifact
272-
uses: actions/upload-artifact@v3
272+
uses: actions/upload-artifact@v4
273273
with:
274274
name: Deb Installer
275275
path: ./package/out/quarto-${{needs.configure.outputs.version}}-linux-amd64.deb
@@ -278,7 +278,7 @@ jobs:
278278
runs-on: ubuntu-latest
279279
needs: [configure, make-tarball]
280280
steps:
281-
- uses: actions/download-artifact@v3
281+
- uses: actions/download-artifact@v4
282282
with:
283283
name: Deb Zip
284284
path: .
@@ -363,13 +363,13 @@ jobs:
363363
CERT_FINGERPRINT: ${{ secrets.SM_CLIENT_CERT_FINGERPRINT }}
364364

365365
- name: Upload Artifact
366-
uses: actions/upload-artifact@v3
366+
uses: actions/upload-artifact@v4
367367
with:
368368
name: Windows Installer
369369
path: ./package/out/quarto-${{needs.configure.outputs.version}}-win.msi
370370

371371
- name: Upload Zip
372-
uses: actions/upload-artifact@v3
372+
uses: actions/upload-artifact@v4
373373
with:
374374
name: Windows Zip
375375
path: ./package/out/quarto-${{needs.configure.outputs.version}}-win.zip
@@ -378,7 +378,7 @@ jobs:
378378
runs-on: windows-latest
379379
needs: [configure, make-installer-win]
380380
steps:
381-
- uses: actions/download-artifact@v3
381+
- uses: actions/download-artifact@v4
382382
with:
383383
name: Windows Zip
384384
path: .
@@ -439,13 +439,13 @@ jobs:
439439
QUARTO_APPLE_CONNECT_PW: ${{ secrets.APPLE_CONNECT_PW }}
440440

441441
- name: Upload Artifact
442-
uses: actions/upload-artifact@v3
442+
uses: actions/upload-artifact@v4
443443
with:
444444
name: Mac Installer
445445
path: ./package/out/quarto-${{needs.configure.outputs.version}}-macos.pkg
446446

447447
- name: Upload Zip
448-
uses: actions/upload-artifact@v3
448+
uses: actions/upload-artifact@v4
449449
with:
450450
name: Mac Zip
451451
path: ./package/out/quarto-${{needs.configure.outputs.version}}-macos.tar.gz
@@ -459,7 +459,7 @@ jobs:
459459
runs-on: macos-latest
460460
needs: [configure, make-installer-mac]
461461
steps:
462-
- uses: actions/download-artifact@v3
462+
- uses: actions/download-artifact@v4
463463
with:
464464
name: Mac Zip
465465
path: .
@@ -495,7 +495,7 @@ jobs:
495495

496496
steps:
497497
- name: Download Artifacts
498-
uses: actions/download-artifact@v3
498+
uses: actions/download-artifact@v4
499499

500500
- name: Rename news
501501
run: |
@@ -619,7 +619,7 @@ jobs:
619619
needs: [configure, publish-release]
620620
steps:
621621
- name: Download Artifacts
622-
uses: actions/download-artifact@v3
622+
uses: actions/download-artifact@v4
623623

624624
- uses: quarto-dev/quarto-cli/.github/actions/docker@main
625625
with:

.github/workflows/test-quarto-latexmk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
../dist/bin/tinitex/x86_64-unknown-linux-gnu/tinitex --help
5656
5757
- name: Upload binary
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
60-
name: tinitex
60+
name: tinitex-${{ matrix.config.os }}
6161
path: |
6262
package/dist/bin/tinitex/*/tinitex*

.github/workflows/test-smokes.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ jobs:
282282
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
283283
echo "Pull Request Action Performed - ${{ steps.cpr.outputs.pull-request-operation }}"
284284
285-
- uses: actions/upload-artifact@v3
285+
- name: Upload test timing file
286+
uses: actions/upload-artifact@v4
286287
if: matrix.time-test && ( failure() || cancelled())
287288
with:
288289
name: timed test file

0 commit comments

Comments
 (0)