Skip to content

Commit

Permalink
Use {download,upload}-artifact v4
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Sep 16, 2024
1 parent 6f8b3a7 commit 6ec3ced
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dev/tasks/macros.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -320,15 +320,15 @@ env:
run: mkdir repo
{% if get_win %}
- name: Get windows binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: r-lib__libarrow__bin__windows
path: repo/libarrow/bin/windows
{% endif %}
{% if get_nix %}
{% for openssl_version in ["1.0", "1.1", "3.0"] %}
- name: Get Linux OpenSSL {{ openssl_version }} binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: r-lib__libarrow__bin__linux-openssl-{{ openssl_version }}
path: repo/libarrow/bin/linux-openssl-{{ openssl_version }}
Expand All @@ -338,15 +338,15 @@ env:
{% for openssl_version in ["1.1", "3.0"] %}
{% for arch in ["x86_64", "arm64"] %}
- name: Get macOS {{ arch }} OpenSSL {{ openssl_version }} binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: r-lib__libarrow__bin__darwin-{{arch}}-openssl-{{ openssl_version }}
path: repo/libarrow/bin/darwin-{{ arch }}-openssl-{{ openssl_version }}
{% endfor %}
{% endfor %}
{% endif %}
- name: Get src pkg
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: r-pkg__src__contrib
path: repo/src/contrib
Expand Down

0 comments on commit 6ec3ced

Please sign in to comment.