Skip to content

Commit 6ec3ced

Browse files
committed
Use {download,upload}-artifact v4
1 parent 6f8b3a7 commit 6ec3ced

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dev/tasks/macros.jinja

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,15 +320,15 @@ env:
320320
run: mkdir repo
321321
{% if get_win %}
322322
- name: Get windows binary
323-
uses: actions/download-artifact@v3
323+
uses: actions/download-artifact@v4
324324
with:
325325
name: r-lib__libarrow__bin__windows
326326
path: repo/libarrow/bin/windows
327327
{% endif %}
328328
{% if get_nix %}
329329
{% for openssl_version in ["1.0", "1.1", "3.0"] %}
330330
- name: Get Linux OpenSSL {{ openssl_version }} binary
331-
uses: actions/download-artifact@v3
331+
uses: actions/download-artifact@v4
332332
with:
333333
name: r-lib__libarrow__bin__linux-openssl-{{ openssl_version }}
334334
path: repo/libarrow/bin/linux-openssl-{{ openssl_version }}
@@ -338,15 +338,15 @@ env:
338338
{% for openssl_version in ["1.1", "3.0"] %}
339339
{% for arch in ["x86_64", "arm64"] %}
340340
- name: Get macOS {{ arch }} OpenSSL {{ openssl_version }} binary
341-
uses: actions/download-artifact@v3
341+
uses: actions/download-artifact@v4
342342
with:
343343
name: r-lib__libarrow__bin__darwin-{{arch}}-openssl-{{ openssl_version }}
344344
path: repo/libarrow/bin/darwin-{{ arch }}-openssl-{{ openssl_version }}
345345
{% endfor %}
346346
{% endfor %}
347347
{% endif %}
348348
- name: Get src pkg
349-
uses: actions/download-artifact@v3
349+
uses: actions/download-artifact@v4
350350
with:
351351
name: r-pkg__src__contrib
352352
path: repo/src/contrib

0 commit comments

Comments
 (0)