Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions {{app_name}}/.github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
version: 2
updates:
- package-ecosystem: maven
directory: "/"
schedule:
interval: daily
time: "23:30"
open-pull-requests-limit: 10
assignees:
- paul58914080
- package-ecosystem: maven
directory: "/"
schedule:
interval: daily
time: "23:30"
open-pull-requests-limit: 10
commit-message:
prefix: "build: "
- package-ecosystem: github-actions
directory: "/.github/"
schedule:
interval: weekly
open-pull-requests-limit: 5
commit-message:
prefix: "ci: "
8 changes: 4 additions & 4 deletions {{app_name}}/.github/workflows/build_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
uses: actions/checkout@v6
- name: Set up JDK 25
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 21
Copy link

Copilot AI Dec 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The step name and java-version parameter are inconsistent. The step is named "Set up JDK 25" but the actual java-version is set to 21. This mismatch will cause the wrong JDK version to be installed. Either update the step name to "Set up JDK 21" or change the java-version to 25 to match the pom.xml configuration which specifies Java 25.

Suggested change
java-version: 21
java-version: 25

Copilot uses AI. Check for mistakes.
- name: Cache Maven dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down
8 changes: 4 additions & 4 deletions {{app_name}}/pom.xml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>21</java.version>
<java.version>25</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<junit-jupiter.version>6.0.1</junit-jupiter.version>
<spring-boot.version>4.0.0</spring-boot.version>
<cucumber.version>7.32.0</cucumber.version>
<cucumber.version>7.33.0</cucumber.version>
<springdoc-openapi-starter.version>3.0.0</springdoc-openapi-starter.version>
<pre-liquibase.version>2.0.0</pre-liquibase.version>
<otj-pg-embedded.version>1.1.1</otj-pg-embedded.version>
<apache.commons.version>1.14.0</apache.commons.version>
<apache.commons.version>1.15.0</apache.commons.version>
<!-- plugins -->
<cukedoctor-maven-plugin.version>3.9.0</cukedoctor-maven-plugin.version>
<maven-surefire-plugin.version>3.5.4</maven-surefire-plugin.version>
<maven-enforcer-plugin>3.6.2</maven-enforcer-plugin>
<arch-unit-maven-plugin.version>4.0.2</arch-unit-maven-plugin.version>
<arch-unit-maven-plugin.version>5.0.0</arch-unit-maven-plugin.version>
<jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version>
<maven-compiler-plugin.version>3.14.1</maven-compiler-plugin.version>
<jib-maven.plugin.version>3.5.1</jib-maven.plugin.version>
Expand Down