Skip to content

Commit 952a2fc

Browse files
committed
🔀️ Merge branch 'ladislas/feature/upgrade-workflows'
2 parents e4d5c83 + 1dce8e2 commit 952a2fc

File tree

2 files changed

+4
-21
lines changed

2 files changed

+4
-21
lines changed

.github/workflows/publish.yml

-12
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,6 @@ jobs:
2323
id: set-up-homebrew
2424
uses: Homebrew/actions/setup-homebrew@master
2525

26-
- name: Cache Homebrew Bundler RubyGems
27-
id: cache
28-
uses: actions/cache@v4
29-
with:
30-
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
31-
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
32-
restore-keys: ${{ runner.os }}-rubygems-
33-
34-
- name: Install Homebrew Bundler RubyGems
35-
if: steps.cache.outputs.cache-hit != 'true'
36-
run: brew install-bundler-gems
37-
3826
- name: Set up git
3927
run: |
4028
git config --global user.name "osxCrossTestBot"

.github/workflows/tests.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,11 @@ jobs:
2626
uses: Homebrew/actions/setup-homebrew@master
2727

2828
- name: Cache Homebrew Bundler RubyGems
29-
id: cache
3029
uses: actions/cache@v4
3130
with:
3231
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
33-
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
34-
restore-keys: ${{ runner.os }}-rubygems-
35-
36-
- name: Install Homebrew Bundler RubyGems
37-
if: steps.cache.outputs.cache-hit != 'true'
38-
run: brew install-bundler-gems
32+
key: ${{ matrix.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
33+
restore-keys: ${{ matrix.os }}-rubygems-
3934

4035
- run: brew test-bot --only-cleanup-before
4136

@@ -50,5 +45,5 @@ jobs:
5045
if: always() && github.event_name == 'pull_request'
5146
uses: actions/upload-artifact@v4
5247
with:
53-
name: bottles-${{ matrix.os }}
54-
path: "*.bottle.*"
48+
name: bottles_${{ matrix.os }}
49+
path: '*.bottle.*'

0 commit comments

Comments
 (0)