Skip to content

Commit 665f312

Browse files
pitrouakravchukdremio
authored andcommitted
DX-113970 Upgrade download-artifact action from v3 to v4
MINOR: [CI] Bump actions/{download,upload}-artifact version (apache#44086) v2 and v3 are deprecated and can fail CI builds, bump to v4. Authored-by: Antoine Pitrou <antoine@python.org> Signed-off-by: Antoine Pitrou <antoine@python.org>
1 parent d6a7cb5 commit 665f312

7 files changed

Lines changed: 8 additions & 8 deletions

dev/tasks/java-jars/github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ jobs:
198198
steps:
199199
{{ macros.github_checkout_arrow(fetch_depth=0)|indent }}
200200
- name: Download Libraries
201-
uses: actions/download-artifact@v3
201+
uses: actions/download-artifact@v4
202202
with:
203203
path: artifacts
204204
- name: Decompress artifacts

dev/tasks/r/github.linux.arrow.version.back.compat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
cp arrow/r/extra-tests/helper*.R extra-tests/
109109
cp arrow/r/extra-tests/test-*.R extra-tests/
110110
- name: Download artifacts
111-
uses: actions/download-artifact@v2
111+
uses: actions/download-artifact@v4
112112
with:
113113
name: files
114114
path: extra-tests/files

dev/tasks/r/github.linux.cran.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ jobs:
5757
if: always()
5858
uses: actions/upload-artifact@v4
5959
with:
60-
name: test-output
60+
name: test-output-{{ "${{ matrix.r_image }}" }}
6161
path: arrow/r/check/arrow.Rcheck/tests/testthat.Rout*

dev/tasks/r/github.linux.offline.build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060

6161
- uses: r-lib/actions/setup-r@v2
6262
- name: Download artifacts
63-
uses: actions/download-artifact@v2
63+
uses: actions/download-artifact@v4
6464
with:
6565
name: thirdparty_deps
6666
path: arrow/r/

dev/tasks/r/github.linux.versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ jobs:
5757
if: always()
5858
uses: actions/upload-artifact@v4
5959
with:
60-
name: test-output
60+
name: test-output-{{ "${{ matrix.r_version }}" }}
6161
path: arrow/r/check/arrow.Rcheck/tests/testthat.Rout*

dev/tasks/r/github.macos-linux.local.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,6 @@ jobs:
9999
- name: Save the test output
100100
uses: actions/upload-artifact@v4
101101
with:
102-
name: test-output
102+
name: test-output-{{ "${{ matrix.os }}" }}
103103
path: arrow-tests/testthat.Rout*
104104
if: always()

dev/tasks/r/github.packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ jobs:
360360
runs-on: ubuntu-latest
361361
container: "rstudio/r-base:4.2-centos7"
362362
steps:
363-
- uses: actions/download-artifact@v3
363+
- uses: actions/download-artifact@v4
364364
with:
365365
name: r-pkg_centos7
366366
- name: Install DTS Package
@@ -442,7 +442,7 @@ jobs:
442442
steps:
443443
{{ macros.github_checkout_arrow()|indent }}
444444
- name: Download Artifacts
445-
uses: actions/download-artifact@v3
445+
uses: actions/download-artifact@v4
446446
with:
447447
path: artifacts
448448
- name: Install R

0 commit comments

Comments
 (0)