Skip to content

Commit ffcc117

Browse files
authored
apacheGH-45157: [CI][Packaging] Remove explicit pins of gemfury version in dev/tasks/macros.jinja (apache#45158)
### Rationale for this change This should fix a lot of CI jobs. See apache#45157. ### What changes are included in this PR? Updated dev/tasks/macros.jinja to remove explicit version pin on the gemfury gem version. ### Are these changes tested? Testing here. ### Are there any user-facing changes? No. * GitHub Issue: apache#45157 Authored-by: Bryce Mecum <petridish@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent 6ce57a0 commit ffcc117

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

dev/tasks/macros.jinja

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,12 @@ env:
158158
- name: Install gemfury client on ARM self-hosted
159159
if: runner.arch != 'X64'
160160
run: |
161-
# GH-36692: Pin gemfury due to wrong faraday dependency declaration.
162-
gem install --user-install gemfury -v 0.12.0
161+
gem install --user-install gemfury
163162
ruby -r rubygems -e 'puts("#{Gem.user_dir}/bin")' >> $GITHUB_PATH
164163
- name: Install gemfury client
165164
if: runner.arch == 'X64'
166165
run: |
167-
# GH-36692: Pin gemfury due to wrong faraday dependency declaration.
168-
gem install gemfury -v 0.12.0
166+
gem install gemfury
169167
- name: Upload package to Gemfury
170168
shell: bash
171169
run: |

0 commit comments

Comments
 (0)