From fea50b51ae31ef260926efc8aae534506a22345a Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Wed, 25 Mar 2026 13:33:53 +0100 Subject: [PATCH] fix: force SNAPSHOT update in CI build (-U flag) Maven cache can serve stale cameleer3-common SNAPSHOTs. The -U flag forces Maven to check the remote registry for updated SNAPSHOTs on every build. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 57d45f07..d0858bfd 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }} - name: Build and Test - run: mvn clean verify -DskipITs --batch-mode + run: mvn clean verify -DskipITs -U --batch-mode docker: needs: build