Skip to content

Commit

Permalink
chore(deps): bump actions/download-artifact from 3 to 4 (#90)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
dependabot[bot] and rasendubi authored Dec 2, 2024
1 parent b74d0fb commit fe56b44
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ jobs:
echo "gem-path=ruby-sdk/$(find pkg -name '*-${{ matrix._.platform }}.gem')" >> $GITHUB_OUTPUT
- name: Upload the cross-compiled gems
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cross-gem
name: cross-gem-${{ matrix._.platform }}
path: ${{ steps.set-outputs.outputs.gem-path }}

publish_ruby:
Expand All @@ -217,9 +217,10 @@ jobs:
ruby-version: '3.3'

- name: Download the cross-compiled gems
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: cross-gem
pattern: cross-gem-*
merge-multiple: true

- name: Check Cargo.lock
# Ensure that Cargo.lock matches Cargo.toml
Expand Down

0 comments on commit fe56b44

Please sign in to comment.