From 8b0080f7321aab3a06819e0c8465a64abfadba5d Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 27 Aug 2026 16:31:03 +0000 Subject: [PATCH] ci: Run RuboCop serially to avoid JRuby thread-parallel failures Co-Authored-By: rlamb@launchdarkly.com <4955475+kinyoklion@users.noreply.github.com> --- .github/actions/check/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/check/action.yml b/.github/actions/check/action.yml index e7455238..edd54d69 100644 --- a/.github/actions/check/action.yml +++ b/.github/actions/check/action.yml @@ -23,7 +23,7 @@ runs: - name: Run RuboCop shell: bash - run: bundle exec rubocop --parallel + run: bundle exec rubocop - name: Build contract tests if: ${{ inputs.flaky != 'true' }}