Skip to content

Commit e0c68b8

Browse files
github-actions[bot]paul58914080
authored andcommitted
ci: update generated copier template from example
1 parent f20ba64 commit e0c68b8

2 files changed

Lines changed: 53 additions & 10 deletions

File tree

Lines changed: 51 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,53 @@
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+
groups:
9+
spring:
10+
patterns:
11+
- "org.springframework:*"
12+
- "org.springframework.boot:*"
13+
testing:
14+
patterns:
15+
- "org.junit*:*"
16+
- "org.mockito:*"
17+
- "org.assertj:*"
18+
- "org.testcontainers:*"
19+
- "io.cucumber:*"
20+
logging:
21+
patterns:
22+
- "org.slf4j:*"
23+
- "ch.qos.logback:*"
24+
jackson:
25+
patterns:
26+
- "com.fasterxml.jackson*:*"
27+
apache:
28+
patterns:
29+
- "org.apache.*:*"
30+
open-pull-requests-limit: 10
31+
commit-message:
32+
prefix: "build: "
33+
- package-ecosystem: github-actions
34+
directory: "/"
35+
schedule:
36+
interval: weekly
37+
groups:
38+
actions-core:
39+
patterns:
40+
- "actions/checkout"
41+
- "actions/cache"
42+
language-setup:
43+
patterns:
44+
- "actions/setup-java"
45+
- "actions/setup-python"
46+
reporting:
47+
patterns:
48+
- "actions/upload-artifact"
49+
- "actions/download-artifact"
50+
- "codecov/codecov-action"
51+
open-pull-requests-limit: 5
52+
commit-message:
53+
prefix: "ci: "

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
distribution: temurin
1616
java-version: 21
1717
- name: Cache Maven dependencies
18-
uses: actions/cache@v4
18+
uses: actions/cache@v5
1919
with:
2020
path: ~/.m2/repository
2121
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -24,6 +24,6 @@ jobs:
2424
- name: Build with Maven
2525
run: mvn clean install -ntp
2626
- name: Upload coverage to Codecov
27-
uses: codecov/codecov-action@v5
27+
uses: codecov/codecov-action@v7
2828
with:
2929
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)