We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0f95ad commit 519100eCopy full SHA for 519100e
1 file changed
.github/workflows/ci.yml
@@ -7,8 +7,8 @@ jobs:
7
strategy:
8
fail-fast: false
9
matrix:
10
- os: [ubuntu-22.04]
11
- ruby: [3.1]
+ os: [ubuntu-24.04]
+ ruby: [3.4.1]
12
13
runs-on: ${{ matrix.os }}
14
@@ -19,17 +19,11 @@ jobs:
19
uses: ruby/setup-ruby@v1
20
with:
21
ruby-version: ${{ matrix.ruby }}
22
+ bundler-cache: true
23
24
- name: Install system dependencies
25
run: sudo apt-get --yes install libidn11-dev
26
- - uses: actions/cache@v1
27
- with:
28
- path: vendor/bundle
29
- key: bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
30
- restore-keys: |
31
- bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-
32
-
33
- name: bundle install
34
run: |
35
bundle config path vendor/bundle
0 commit comments