Skip to content

Commit

Permalink
Merge pull request #175 from akhilgkrishnan/bump-versions-in-workflow
Browse files Browse the repository at this point in the history
Bump action/checkout and ruby version in workflow
  • Loading branch information
flavorjones committed Jan 11, 2024
2 parents 5cff079 + 8283fe7 commit 705df17
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -19,18 +19,18 @@ jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
ruby-version: "3.3"
bundler-cache: true
- run: bundle exec rubocop

cruby:
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2", '3.3', "ruby-head", "truffleruby-head", "jruby-9.4", "jruby-head"]
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", "ruby-head", "truffleruby-head", "jruby-9.4", "jruby-head"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -43,10 +43,10 @@ jobs:
cruby-nokogiri-system-libraries:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
ruby-version: "3.3"
- name: Install nokogiri with system libraries
run: |
sudo apt install pkg-config libxml2-dev libxslt-dev
Expand Down

0 comments on commit 705df17

Please sign in to comment.