Skip to content
This repository was archived by the owner on Sep 30, 2025. It is now read-only.

Commit 5e8344a

Browse files
authored
Merge pull request #188 from Homebrew/artifact-actions-v4
workflows: use artifact actions v4
2 parents 6db5441 + f0bae3a commit 5e8344a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343
brew portable-package --verbose portable-ruby
4444
4545
- name: Upload Portable Ruby
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
with:
48-
name: bottles
48+
name: bottles_${{matrix.os}}
4949
path: ${{matrix.workdir || github.workspace}}/bottle
5050

5151
- name: Test Portable Ruby

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,11 @@ jobs:
6868
run: mkdir bottles
6969

7070
- name: Download bottles
71-
uses: actions/download-artifact@v3
71+
uses: actions/download-artifact@v4
7272
with:
73-
name: bottles
73+
pattern: bottles_*
7474
path: bottles
75+
merge-multiple: true
7576

7677
- name: Upload to GitHub Packages
7778
working-directory: bottles

0 commit comments

Comments
 (0)