Skip to content

Commit fe56b44

Browse files
chore(deps): bump actions/download-artifact from 3 to 4 (#90)
* chore(deps): bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore(ci): update upload-artifact / follow migration doc --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Oleksii Shmalko <[email protected]>
1 parent b74d0fb commit fe56b44

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ jobs:
192192
echo "gem-path=ruby-sdk/$(find pkg -name '*-${{ matrix._.platform }}.gem')" >> $GITHUB_OUTPUT
193193
194194
- name: Upload the cross-compiled gems
195-
uses: actions/upload-artifact@v3
195+
uses: actions/upload-artifact@v4
196196
with:
197-
name: cross-gem
197+
name: cross-gem-${{ matrix._.platform }}
198198
path: ${{ steps.set-outputs.outputs.gem-path }}
199199

200200
publish_ruby:
@@ -217,9 +217,10 @@ jobs:
217217
ruby-version: '3.3'
218218

219219
- name: Download the cross-compiled gems
220-
uses: actions/download-artifact@v3
220+
uses: actions/download-artifact@v4
221221
with:
222-
name: cross-gem
222+
pattern: cross-gem-*
223+
merge-multiple: true
223224

224225
- name: Check Cargo.lock
225226
# Ensure that Cargo.lock matches Cargo.toml

0 commit comments

Comments
 (0)