From 5014e56b98a7017aaacac64ffe7e25f2b868e258 Mon Sep 17 00:00:00 2001 From: Gabriel Pan Gantes Date: Mon, 29 Jun 2026 13:57:04 +0200 Subject: [PATCH] fix(ci): revert setup-java and doppler action major bumps The major bumps merged in #85 (actions/setup-java v1->v5) and #90 (dopplerhq/cli-action v1->v4) broke the Build & Test workflow on master (startup_failure since 630dbff; last green was 492d456). setup-java v5 also requires a `distribution` input the config doesn't set. Revert both to the last known-good majors (v1), restoring the workflow exactly as it ran green. Major action bumps are now excluded by dependabot.yml (#97) and handled manually when intended. --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index b5989fe..c8237ae 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v2 - name: Set up JDK 1.8 - uses: actions/setup-java@v5 + uses: actions/setup-java@v1 with: java-version: 1.8 server-id: github # Value of the distributionManagement/repository/id field of the pom.xml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v2 - name: Install Doppler CLI - uses: dopplerhq/cli-action@v4 + uses: dopplerhq/cli-action@v1 - name: Login in Doppler run: doppler setup --token=${{ secrets.DOPPLER_TOKEN_PROD }} --no-prompt