From f7ca96f7482229ab3d93e2925c53dc9f0ff18827 Mon Sep 17 00:00:00 2001 From: Prajwal Krishna <32260838+PrajwalKrishna@users.noreply.github.com> Date: Mon, 18 May 2026 12:10:19 +0530 Subject: [PATCH 1/2] NO-TICKET: Bump default Gradle max-workers from 2 to 4 for update locks Increases default parallelism for all Gradle invocations (builds, lock updates, tests) across all consuming repos. This helps speed up lock resolution and dependency-heavy tasks without requiring per-repo changes. --- raise-lock-pr/action.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/raise-lock-pr/action.yaml b/raise-lock-pr/action.yaml index 5a368cb..011d749 100644 --- a/raise-lock-pr/action.yaml +++ b/raise-lock-pr/action.yaml @@ -17,6 +17,7 @@ runs: uses: hypertrace/github-actions/gradle@main with: args: resolveAndLockAll --write-locks --refresh-dependencies + max-workers: '4' - name: Remove settings lock if needed if: inputs.lock-settings != 'true' shell: bash From 87ae738f330aeef5330c65496e59078c804abb59 Mon Sep 17 00:00:00 2001 From: Prajwal Krishna <32260838+PrajwalKrishna@users.noreply.github.com> Date: Mon, 18 May 2026 12:12:09 +0530 Subject: [PATCH 2/2] Update action.yaml --- raise-lock-pr/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raise-lock-pr/action.yaml b/raise-lock-pr/action.yaml index 011d749..064fb22 100644 --- a/raise-lock-pr/action.yaml +++ b/raise-lock-pr/action.yaml @@ -17,7 +17,7 @@ runs: uses: hypertrace/github-actions/gradle@main with: args: resolveAndLockAll --write-locks --refresh-dependencies - max-workers: '4' + max-workers: '4' - name: Remove settings lock if needed if: inputs.lock-settings != 'true' shell: bash