Lock ubuntu version to 20.04 to workaround older Ruby build issues

Trying to get the build fully green for now.
This commit is contained in:
Carlos Antonio da Silva
2023-10-10 10:36:16 -03:00
parent 501ae58a25
commit 218d14a227

View File

@@ -159,7 +159,9 @@ jobs:
ruby: '2.5'
- gemfile: gemfiles/Gemfile-rails-4-1
ruby: '2.4'
runs-on: ubuntu-latest
# TODO: lock `ubunty-20.04` due to older Ruby version compatibility, change to `ubuntu-latest` again when dropping older Ruby support.
# https://github.com/ruby/setup-ruby/issues/496#issuecomment-1520662740
runs-on: ubuntu-20.04
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps: