Skip to content

Commit 113db85

Browse files
committed
update
1 parent 2ed403b commit 113db85

File tree

2 files changed

+41
-3
lines changed

2 files changed

+41
-3
lines changed

.github/dependabot.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: gradle
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
day: monday
8+
open-pull-requests-limit: 10
9+
groups:
10+
spring-boot:
11+
patterns:
12+
- "org.springframework.boot:*"
13+
- "io.spring.dependency-management:*"
14+
build-plugins:
15+
patterns:
16+
- "com.diffplug.spotless:*"
17+
- "io.freefair.lombok:*"
18+
- "com.github.ben-manes.versions:*"
19+
- "com.gradleup.shadow:*"
20+
- "org.sonarqube:*"
21+
testing:
22+
patterns:
23+
- "org.junit:*"
24+
- "org.instancio:*"
25+
- "net.javacrumbs.json-unit:*"
26+
data-and-mappers:
27+
patterns:
28+
- "org.springdoc:*"
29+
- "org.openapitools:*"
30+
- "org.apache.commons:*"
31+
- "net.datafaker:*"
32+
- "org.mapstruct:*"
33+
- "com.h2database:*"
34+
- package-ecosystem: github-actions
35+
directory: /
36+
schedule:
37+
interval: weekly
38+
day: monday

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v2
13-
- uses: actions/setup-java@v3
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-java@v5
1414
with:
1515
distribution: 'temurin'
16-
java-version: '20'
16+
java-version: '25'
1717
- run: make build
1818
- run: make test

0 commit comments

Comments
 (0)