Skip to content

Commit

Permalink
Bump action/checkout and ruby version in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilgkrishnan committed Jan 9, 2024
1 parent 5cff079 commit 8283fe7
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 8283fe7

Please sign in to comment.