Skip to content

Commit d71ba41

Browse files
authored
Merge pull request #769 from msuliq/bug/compatibility-with-rails-7-1
Bug/compatibility with rails 7.1
2 parents 1bfa28e + f93bba1 commit d71ba41

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,26 @@ jobs:
66
# and secondarily because jobs are performed concurrently.
77
gha-job-authlogic-lint:
88
name: Lint
9-
runs-on: ubuntu-18.04
9+
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout source
1212
uses: actions/checkout@v2
1313
- name: Setup ruby
14-
uses: actions/setup-ruby@v1
14+
uses: ruby/setup-ruby@v1
1515
with:
1616
# Set to `TargetRubyVersion` in `.rubocopy.yml`
1717
ruby-version: 2.6
1818
- name: Bundle
1919
run: |
20-
gem install bundler
20+
gem install bundler -v 2.4.22
2121
bundle install --jobs 4 --retry 3
2222
- name: Lint
2323
run: bundle exec rubocop
2424

2525
# The test job is a matrix of ruby/rails versions.
2626
gha-job-authlogic-test:
2727
name: Ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}.rb
28-
runs-on: ubuntu-18.04
28+
runs-on: ubuntu-latest
2929
services:
3030
gha-service-authlogic-mysql:
3131
env:
@@ -73,12 +73,12 @@ jobs:
7373
- name: Checkout source
7474
uses: actions/checkout@v2
7575
- name: Setup ruby
76-
uses: actions/setup-ruby@v1
76+
uses: ruby/setup-ruby@v1
7777
with:
7878
ruby-version: ${{ matrix.ruby }}
7979
- name: Bundle
8080
run: |
81-
gem install bundler
81+
gem install bundler -v 2.4.22
8282
bundle install --jobs 4 --retry 3
8383
env:
8484
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.rb

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1414
- Fixed
1515
- [#767](https://github.com/binarylogic/authlogic/pull/767) - Adds support for Rails 7.1
1616

17+
## 6.4.3 (2023-12-13)
18+
19+
* Breaking Changes
20+
* None
21+
* Added
22+
* None
23+
* Fixed
24+
* [#769](https://github.com/binarylogic/authlogic/issues/769) - Fixed GH workflow
25+
1726
## 6.4.2 (2021-12-21)
1827

1928
- Breaking Changes

0 commit comments

Comments
 (0)