Skip to content

Commit

Permalink
Adds Ruby 3.2 to CI. Updates some action versions. (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
petergoldstein committed May 27, 2023
1 parent a7b6458 commit 68be870
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.2
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: vendor/bundle
key: gems-build-rails-main-ruby-2.7.2-${{ hashFiles('**/Gemfile.lock') }}
Expand All @@ -26,14 +26,14 @@ jobs:
strategy:
matrix:
rails_version: [6.0.6, 6.1.7, 7.0.4]
ruby_version: [2.6.10, 2.7.7, 3.0.5, 3.1.3]
ruby_version: [2.6.10, 2.7.7, 3.0.5, 3.1.3, 3.2.2]
exclude:
- rails_version: 6.0.6
ruby_version: 3.0.5
- rails_version: 6.0.6
ruby_version: 3.1.3
- rails_version: 7.0.4
ruby_version: 2.5.9
- rails_version: 6.0.6
ruby_version: 3.2.2
- rails_version: 7.0.4
ruby_version: 2.6.10
# - rails_version: main
Expand All @@ -44,7 +44,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: vendor/bundle
key: gems-build-rails-${{ matrix.rails_version }}-ruby-${{ matrix.ruby_version }}-${{ hashFiles('**/Gemfile.lock') }}
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
ruby-version: 2.7.2
- name: Download coverage results
uses: actions/download-artifact@v2
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: vendor/bundle
key: gems-build-rails-main-ruby-2.7.2-${{ hashFiles('**/Gemfile.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down

0 comments on commit 68be870

Please sign in to comment.