Skip to content

Commit 68cfc48

Browse files
committed
Merge remote-tracking branch 'origin/master' into jruby
2 parents e5d26f7 + d1200ed commit 68cfc48

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/push_gem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Harden Runner
26-
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
26+
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
2727
with:
2828
egress-policy: audit
2929

.github/workflows/test.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,24 @@ name: build
33
on: [push, pull_request]
44

55
jobs:
6+
ruby-versions:
7+
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
8+
with:
9+
engine: cruby-jruby
10+
min_version: 2.5
11+
612
build:
13+
needs: ruby-versions
714
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
815
strategy:
916
matrix:
10-
ruby: [ 2.7, 2.6, 2.5, head, jruby, jruby-head ]
17+
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
1118
os: [ ubuntu-latest, macos-latest, windows-latest ]
1219
exclude:
1320
- { os: macos-latest, ruby: '2.5' }
1421
include:
15-
- { os: macos-13, ruby: '2.5' }
22+
- { os: macos-15-intel, ruby: '2.5' }
23+
- { os: macos-15-intel, ruby: '3.4' }
1624
runs-on: ${{ matrix.os }}
1725
steps:
1826
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)