Bump actions/dependency-review-action from 67d4f4bd7a9b17a0db54d2a7519187c65e339de8 to d8f2df20d5605f0dd46db3bd283002c24e357724 #50
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: RSpec on JRuby | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
schedule: | |
- cron: "0 21 * * 6" | |
env: | |
JRUBY_OPTS: "--debug" | |
permissions: | |
contents: read | |
jobs: | |
rspec: | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["jruby-9.4", "jruby-head"] | |
steps: | |
- name: Harden the runner (Audit all outbound calls) | |
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- run: rm -f Gemfile.lock | |
- run: rm -f .ruby-version | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@d8d83c3960843afb664e821fed6be52f37da5267 # v1.231.0 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
rubygems: latest | |
bundler: latest | |
bundler-cache: true | |
- run: bundle exec rspec |