diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 40e3103b5..f7177d952 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,14 +17,14 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.1.7", "3.2.8", "3.3.8", "3.4.1", "jruby-9.4"] + ruby: ["3.1.7", "3.2.9", "3.3.8", "3.4.1", "jruby-9.4"] test_command: ["bundle exec rake test"] include: - ruby: "head" test_command: "bundle exec rake test || true" - ruby: "truffleruby" test_command: "bundle exec rake test || true" - - ruby: "3.2.8" + - ruby: "3.2.9" test_command: "./ci/run_rubocop_specs || true" - ruby: "3.3.8" test_command: "./ci/run_rubocop_specs || true" diff --git a/lib/parser/current.rb b/lib/parser/current.rb index adb25f525..c6491b6f0 100644 --- a/lib/parser/current.rb +++ b/lib/parser/current.rb @@ -102,7 +102,7 @@ def warn_syntax_deviation(feature, version) CurrentRuby = Ruby31 when /^3\.2\./ - current_version = '3.2.8' + current_version = '3.2.9' if RUBY_VERSION != current_version warn_syntax_deviation 'parser/ruby32', current_version end