File tree Expand file tree Collapse file tree 7 files changed +24
-14
lines changed Expand file tree Collapse file tree 7 files changed +24
-14
lines changed Original file line number Diff line number Diff line change @@ -9,3 +9,12 @@ updates:
9
9
directory : " /" # Location of package manifests
10
10
schedule :
11
11
interval : " weekly"
12
+ - package-ecosystem : " github-actions" # See documentation for possible values
13
+ directory : " /" # Location of package manifests
14
+ schedule :
15
+ interval : " weekly"
16
+ - package-ecosystem : " npm" # See documentation for possible values
17
+ directory : " /docs/" # Location of package manifests
18
+ schedule :
19
+ interval : " weekly"
20
+
Original file line number Diff line number Diff line change 35
35
with :
36
36
node-version : 20
37
37
- name : Setup Pages
38
- uses : actions/configure-pages@v4
38
+ uses : actions/configure-pages@v5
39
39
- name : Install dependencies
40
40
working-directory : ./docs
41
41
run : npm install
44
44
npm run --prefix docs build
45
45
mkdir staging
46
46
cp ./docs/.vitepress/dist/* staging -r
47
- - uses : actions/setup-java@v3
47
+ - uses : actions/setup-java@v4
48
48
with :
49
49
java-version : ' 11'
50
50
distribution : ' temurin'
Original file line number Diff line number Diff line change 23
23
target
24
24
env :
25
25
currentVersion : ${{ github.event.release.tag_name }}
26
- - uses : actions/setup-java@v3
26
+ - uses : actions/setup-java@v4
27
27
with :
28
28
java-version : ' 11'
29
29
distribution : ' temurin'
33
33
- name : mvn versions
34
34
run : mvn versions:set -DnewVersion=${{ github.event.release.tag_name }}
35
35
- name : Import GPG Key
36
- uses : crazy-max/ghaction-import-gpg@v5.0 .0
36
+ uses : crazy-max/ghaction-import-gpg@v6.1 .0
37
37
with :
38
38
gpg_private_key : ${{ secrets.OSSRH_GPG_SECRET_KEY }}
39
39
passphrase : ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
Original file line number Diff line number Diff line change 20
20
runs-on : ubuntu-latest
21
21
22
22
steps :
23
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@v4
24
24
- name : Set up JDK 11
25
- uses : actions/setup-java@v3
25
+ uses : actions/setup-java@v4
26
26
with :
27
27
java-version : ' 11'
28
28
distribution : ' temurin'
35
35
permissions :
36
36
contents : write # If there is a protection rule on the repository, will need to grant write permission to the workflow.
37
37
steps :
38
- - uses : actions/checkout@v3 # v2 minimum required
38
+ - uses : actions/checkout@v4 # v2 minimum required
39
39
- uses : axel-op/googlejavaformat-action@v3
40
40
with :
41
41
args : " --skip-sorting-imports --replace"
Original file line number Diff line number Diff line change @@ -20,22 +20,22 @@ jobs:
20
20
name : Build and analyze
21
21
runs-on : ubuntu-latest
22
22
steps :
23
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@v4
24
24
with :
25
25
fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
26
26
- name : Set up JDK 17
27
- uses : actions/setup-java@v3
27
+ uses : actions/setup-java@v4
28
28
with :
29
29
java-version : 17
30
30
distribution : ' zulu' # Alternative distribution options are available.
31
31
- name : Cache SonarCloud packages
32
- uses : actions/cache@v3
32
+ uses : actions/cache@v4
33
33
with :
34
34
path : ~/.sonar/cache
35
35
key : ${{ runner.os }}-sonar
36
36
restore-keys : ${{ runner.os }}-sonar
37
37
- name : Cache Maven packages
38
- uses : actions/cache@v3
38
+ uses : actions/cache@v4
39
39
with :
40
40
path : ~/.m2
41
41
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change 8
8
"preview" : " vitepress preview"
9
9
},
10
10
"dependencies" : {
11
- "vitepress-carbon" : " ^1.3.3"
11
+ "vitepress-carbon" : " ^1.4.3" ,
12
+ "vitepress" : " ^1.4.0"
12
13
}
13
14
}
Original file line number Diff line number Diff line change 79
79
<plugin >
80
80
<groupId >org.apache.maven.plugins</groupId >
81
81
<artifactId >maven-javadoc-plugin</artifactId >
82
- <version >3.8.0 </version >
82
+ <version >3.10.1 </version >
83
83
<executions >
84
84
<execution >
85
85
<id >attach-javadocs</id >
148
148
<plugin >
149
149
<groupId >org.sonatype.central</groupId >
150
150
<artifactId >central-publishing-maven-plugin</artifactId >
151
- <version >0.5 .0</version >
151
+ <version >0.6 .0</version >
152
152
<extensions >true</extensions >
153
153
<configuration >
154
154
<publishingServerId >central</publishingServerId >
You can’t perform that action at this time.
0 commit comments