From 73e41e5607094a43032c472e9b83ae3f54bcd815 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Sun, 26 Apr 2026 20:58:06 +0200 Subject: [PATCH] fix(ci): force SNAPSHOT updates in build job Maven command The actions/cache restored a stale ~/.m2/repository with the old cameleer-license-minter SNAPSHOT (pre-license-api extraction). Adding -U forces re-resolution of SNAPSHOT dependencies. 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 b4ce3b2..0d2b9c1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: - name: Build and Test (unit tests only) run: >- - mvn clean verify -B + mvn clean verify -U -B -Dsurefire.excludes="**/AuthControllerTest.java,**/TenantControllerTest.java,**/LicenseControllerTest.java,**/AuditRepositoryTest.java,**/CameleerSaasApplicationTest.java,**/EnvironmentControllerTest.java,**/AppControllerTest.java,**/DeploymentControllerTest.java,**/AgentStatusControllerTest.java,**/VendorTenantControllerTest.java,**/TenantPortalControllerTest.java" - name: Build sign-in UI