diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 30c0e606..7740f3bd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,18 +6,18 @@ jobs: # and secondarily because jobs are performed concurrently. gha-job-authlogic-lint: name: Lint - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Checkout source uses: actions/checkout@v2 - name: Setup ruby - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: # Set to `TargetRubyVersion` in `.rubocopy.yml` ruby-version: 2.6 - name: Bundle run: | - gem install bundler + gem install bundler -v 2.4.22 bundle install --jobs 4 --retry 3 - name: Lint run: bundle exec rubocop @@ -25,7 +25,7 @@ jobs: # The test job is a matrix of ruby/rails versions. gha-job-authlogic-test: name: Ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}.rb - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest services: gha-service-authlogic-mysql: env: @@ -73,12 +73,12 @@ jobs: - name: Checkout source uses: actions/checkout@v2 - name: Setup ruby - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Bundle run: | - gem install bundler + gem install bundler -v 2.4.22 bundle install --jobs 4 --retry 3 env: BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.rb diff --git a/CHANGELOG.md b/CHANGELOG.md index e6f6a0bd..a83a0d13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fixed - [#767](https://github.com/binarylogic/authlogic/pull/767) - Adds support for Rails 7.1 +## 6.4.3 (2023-12-13) + +* Breaking Changes + * None +* Added + * None +* Fixed + * [#769](https://github.com/binarylogic/authlogic/issues/769) - Fixed GH workflow + ## 6.4.2 (2021-12-21) - Breaking Changes