Skip to content

Commit aca05a4

Browse files
ci: update generated copier template from example
1 parent 9205d14 commit aca05a4

File tree

3 files changed

+23
-16
lines changed

3 files changed

+23
-16
lines changed
Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
version: 2
22
updates:
3-
- package-ecosystem: maven
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
time: "23:30"
8-
open-pull-requests-limit: 10
9-
assignees:
10-
- paul58914080
3+
- package-ecosystem: maven
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
time: "23:30"
8+
open-pull-requests-limit: 10
9+
commit-message:
10+
prefix: "build: "
11+
- package-ecosystem: github-actions
12+
directory: "/.github/"
13+
schedule:
14+
interval: weekly
15+
open-pull-requests-limit: 5
16+
commit-message:
17+
prefix: "ci: "

{{app_name}}/.github/workflows/build_workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v4
12-
- name: Set up JDK 21
13-
uses: actions/setup-java@v4
11+
uses: actions/checkout@v6
12+
- name: Set up JDK 25
13+
uses: actions/setup-java@v5
1414
with:
1515
distribution: temurin
1616
java-version: 21
1717
- name: Cache Maven dependencies
18-
uses: actions/cache@v3
18+
uses: actions/cache@v4
1919
with:
2020
path: ~/.m2/repository
2121
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

{{app_name}}/pom.xml.jinja

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@
99
<version>1.0-SNAPSHOT</version>
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<java.version>21</java.version>
12+
<java.version>25</java.version>
1313
<maven.compiler.source>${java.version}</maven.compiler.source>
1414
<maven.compiler.target>${java.version}</maven.compiler.target>
1515
<junit-jupiter.version>6.0.1</junit-jupiter.version>
1616
<spring-boot.version>4.0.0</spring-boot.version>
17-
<cucumber.version>7.32.0</cucumber.version>
17+
<cucumber.version>7.33.0</cucumber.version>
1818
<springdoc-openapi-starter.version>3.0.0</springdoc-openapi-starter.version>
1919
<pre-liquibase.version>2.0.0</pre-liquibase.version>
2020
<otj-pg-embedded.version>1.1.1</otj-pg-embedded.version>
21-
<apache.commons.version>1.14.0</apache.commons.version>
21+
<apache.commons.version>1.15.0</apache.commons.version>
2222
<!-- plugins -->
2323
<cukedoctor-maven-plugin.version>3.9.0</cukedoctor-maven-plugin.version>
2424
<maven-surefire-plugin.version>3.5.4</maven-surefire-plugin.version>
2525
<maven-enforcer-plugin>3.6.2</maven-enforcer-plugin>
26-
<arch-unit-maven-plugin.version>4.0.2</arch-unit-maven-plugin.version>
26+
<arch-unit-maven-plugin.version>5.0.0</arch-unit-maven-plugin.version>
2727
<jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version>
2828
<maven-compiler-plugin.version>3.14.1</maven-compiler-plugin.version>
2929
<jib-maven.plugin.version>3.5.1</jib-maven.plugin.version>

0 commit comments

Comments
 (0)