From 83092f611a6e28532d9c3b34ecda1920761a8796 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Sun, 7 Jun 2026 11:37:44 -0400 Subject: [PATCH] Stop compiling Java in dependency update workflow The dependency update workflow should only refresh dependencies and generated sources. Remove the Java compile validation step so compilation failures are handled by normal CI instead of blocking update PR creation. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/update-copilot-dependency.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/update-copilot-dependency.yml b/.github/workflows/update-copilot-dependency.yml index 10352234a..b1a668a7c 100644 --- a/.github/workflows/update-copilot-dependency.yml +++ b/.github/workflows/update-copilot-dependency.yml @@ -114,10 +114,6 @@ jobs: working-directory: ./java run: mvn generate-sources -Pcodegen - - name: Compile Java SDK (validate generated code) - working-directory: ./java - run: mvn compile -Pskip-test-harness - - name: Create pull request env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}