Skip to content

Commit 3640407

Browse files
committed
Fix the CI and let dependabot update the actions
1 parent 97863fa commit 3640407

File tree

3 files changed

+27
-12
lines changed

3 files changed

+27
-12
lines changed

.github/CODEOWNERS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# This file is used to define the code owners for the repository.
2+
# Each line is a file pattern followed by one or more GitHub usernames or team names.
3+
# For more information, see https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
4+
# The code owners will be automatically requested for review when someone makes changes to the files they own.
5+
# All the modified files will be reviewed by dadoonet.
6+
* @dadoonet

.github/dependabot.yml

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
version: 2
22
updates:
3-
- package-ecosystem: maven
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
time: "04:00"
8-
open-pull-requests-limit: 99
9-
reviewers:
10-
- "dadoonet"
11-
assignees:
12-
- "dadoonet"
3+
# Enable version updates for Maven
4+
- package-ecosystem: maven
5+
directory: "/"
6+
schedule:
7+
interval: daily
8+
time: "04:00"
9+
open-pull-requests-limit: 99
10+
assignees:
11+
- dadoonet
12+
13+
# Maintain dependencies for GitHub Actions
14+
- package-ecosystem: "github-actions"
15+
directory: "/.github/workflows"
16+
schedule:
17+
interval: "daily"
18+
time: "04:00"
19+
open-pull-requests-limit: 99
20+
assignees:
21+
- dadoonet

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
packages: write
99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
with:
1313
ref: ${{ github.head_ref }}
1414
token: ${{ secrets.PAT }}
@@ -17,7 +17,7 @@ jobs:
1717
- name: Update files if needed
1818
uses: stefanzweifel/git-auto-commit-action@v4
1919
- name: Set up JDK 17 and Maven Central Repository
20-
uses: actions/setup-java@v2
20+
uses: actions/setup-java@v4
2121
with:
2222
java-version: '17'
2323
distribution: 'adopt'

0 commit comments

Comments
 (0)