File tree Expand file tree Collapse file tree 3 files changed +31
-11
lines changed
Expand file tree Collapse file tree 3 files changed +31
-11
lines changed Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+ version : 2
6+ updates :
7+ - package-ecosystem : " maven" # See documentation for possible values
8+ directory : " /" # Location of package manifests
9+ schedule :
10+ interval : " weekly"
11+
12+ - package-ecosystem : " github-actions" # Also update Github actions
13+ directory : " /"
14+ schedule :
15+ # Check for updates to GitHub Actions every week
16+ interval : " weekly"
Original file line number Diff line number Diff line change 1616
1717name : maven push
1818
19- on : [push]
19+ on :
20+ push :
21+ branches :
22+ - ' main'
23+ - ' 1.x'
2024
2125jobs :
2226 build :
@@ -25,20 +29,20 @@ jobs:
2529 env :
2630 MAVEN_OPTS : " -Xmx4096m -Xms2048m -XX:MaxMetaspaceSize=4096m -Xss8m"
2731 steps :
28- - uses : actions/checkout@v4
32+ - uses : actions/checkout@v6
2933
3034 - name : Set up JDK 11 for x64
31- uses : actions/setup-java@v3
35+ uses : actions/setup-java@v5
3236 with :
33- java-version : ' 11 '
37+ java-version : ' 17 '
3438 distribution : ' temurin'
3539 architecture : x64
3640
37- - uses : s4u/maven-settings-action@v2.8.0
41+ - uses : s4u/maven-settings-action@v22
3842 with :
3943 sonatypeSnapshots : true
4044
41- - uses : s4u/maven-settings-action@v2.8.0
45+ - uses : s4u/maven-settings-action@v22
4246 if : ${{ github.event_name == 'push' }}
4347 with :
4448 servers : |
Original file line number Diff line number Diff line change @@ -25,16 +25,16 @@ jobs:
2525 env :
2626 MAVEN_OPTS : " -Xmx4096m -Xms2048m -XX:MaxMetaspaceSize=4096m -Xss8m"
2727 steps :
28- - uses : actions/checkout@v4
28+ - uses : actions/checkout@v6
2929
30- - name : Set up JDK 11 for x64
31- uses : actions/setup-java@v3
30+ - name : Set up JDK
31+ uses : actions/setup-java@v5
3232 with :
33- java-version : ' 11 '
33+ java-version : ' 17 '
3434 distribution : ' temurin'
3535 architecture : x64
3636
37- - uses : s4u/maven-settings-action@v2.8.0
37+ - uses : s4u/maven-settings-action@v22
3838 with :
3939 sonatypeSnapshots : true
4040
You can’t perform that action at this time.
0 commit comments