This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch v3
in repository https://gitbox.apache.org/repos/asf/causeway.git


The following commit(s) were added to refs/heads/v3 by this push:
     new 08428e70005 CAUSEWAY-2445: copies current github conf from main to v3
08428e70005 is described below

commit 08428e70005bbd821da7a0f4a20ea80e4a6417e9
Author: andi-huber <[email protected]>
AuthorDate: Fri Nov 7 13:21:15 2025 +0100

    CAUSEWAY-2445: copies current github conf from main to v3
---
 .github/dependabot.yml                                 |  4 ++--
 .github/workflows/ci-build-artifacts-no-push-maven.yml | 14 +++++++-------
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 4299aa57b53..7a1bffc8c65 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -15,7 +15,7 @@ updates:
 
   # Maintain dependencies for Maven (v3 branch)
   - package-ecosystem: "maven"
-    target-branch: "main"
+    target-branch: "v3"
     directory: "/" # Location of package manifests
     schedule:
       interval: "weekly"
@@ -28,7 +28,7 @@ updates:
 
   # Maintain dependencies for Maven (v4 branch)
   - package-ecosystem: "maven"
-    target-branch: "v4"
+    target-branch: "main"
     directory: "/" # Location of package manifests
     schedule:
       interval: "weekly"
diff --git a/.github/workflows/ci-build-artifacts-no-push-maven.yml 
b/.github/workflows/ci-build-artifacts-no-push-maven.yml
index 2a459b38a4b..643e1eccf4d 100644
--- a/.github/workflows/ci-build-artifacts-no-push-maven.yml
+++ b/.github/workflows/ci-build-artifacts-no-push-maven.yml
@@ -4,11 +4,11 @@ on:
   push:
     branches:
       - main
-      - v4
+      - v3
   pull_request:
     branches:
       - main
-      - v4
+      - v3
 
 jobs:
   # This is a matrix build {'java', 'javascript'},
@@ -64,12 +64,12 @@ jobs:
         java-version: 25
 
     - name: Set up Maven (3.9.11)
-      if: matrix.language == 'java' && env.BRANCH_NAME == 'main'
+      if: matrix.language == 'java' && env.BRANCH_NAME == 'v3'
       uses: stCarolas/setup-maven@v5
       with:
         maven-version: 3.9.11
     - name: Set up Maven (4.0.0-rc-4)
-      if: matrix.language == 'java' && env.BRANCH_NAME == 'v4'
+      if: matrix.language == 'java' && env.BRANCH_NAME == 'main'
       uses: stCarolas/setup-maven@v5
       with:
         maven-version: 4.0.0-rc-4
@@ -107,7 +107,7 @@ jobs:
     # CodeQL Analysis 
(https://codeql.github.com/docs/codeql-overview/about-codeql/)
     - name: "CodeQL: Initialize"
       if: env.SKIP_CODE_QL != 'true'
-      uses: github/codeql-action/init@v3
+      uses: github/codeql-action/init@v4
       with:
         languages: ${{ matrix.language }}
 
@@ -138,11 +138,11 @@ jobs:
     # If this step fails, then you should remove it and run the build manually
     - name: "CodeQL: Autobuild"
       if: env.SKIP_CODE_QL != 'true' && matrix.language == 'javascript'
-      uses: github/codeql-action/autobuild@v3
+      uses: github/codeql-action/autobuild@v4
 
     - name: "CodeQL: Perform Analysis"
       if: env.SKIP_CODE_QL != 'true'
-      uses: github/codeql-action/analyze@v3
+      uses: github/codeql-action/analyze@v4
       with:
         category: "/language:${{matrix.language}}"
 

Reply via email to