Skip to content

Commit 419dabf

Browse files
committed
dependabot
1 parent a6f6d29 commit 419dabf

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-java@v5
14+
with:
15+
distribution: 'temurin'
16+
java-version: '25'
17+
- run: make build
18+
- run: make test

0 commit comments

Comments
 (0)