From cd545df7303352832b0d82e3bdda84b187c1ae5c Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Tue, 23 Jun 2026 22:37:51 -0700 Subject: [PATCH] Remove `download` CI workflow step, no longer needed when using `autoDownloadPurge` and caching --- .github/workflows/bld.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index d815308..eef7857 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -115,11 +115,8 @@ jobs: key: ${{ runner.os }}-bld-java${{ matrix.java-version}}-lib restore-keys: ${{ runner.os }}-bld-java${{ matrix.java-version}}-lib - - name: Download dependencies - run: ./bld clean download - - name: Compile source - run: ./bld compile + run: ./bld clean compile - name: Run tests id: tests