Skip to content

Commit f72bcc2

Browse files
authored
Merge branch 'main' into dependabot/maven/org.apache.maven.plugins-maven-surefire-plugin-3.5.1
2 parents 9b16c49 + b0eafd9 commit f72bcc2

File tree

7 files changed

+24
-14
lines changed

7 files changed

+24
-14
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,12 @@ updates:
99
directory: "/" # Location of package manifests
1010
schedule:
1111
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+

.github/workflows/deploy-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
node-version: 20
3737
- name: Setup Pages
38-
uses: actions/configure-pages@v4
38+
uses: actions/configure-pages@v5
3939
- name: Install dependencies
4040
working-directory: ./docs
4141
run: npm install
@@ -44,7 +44,7 @@ jobs:
4444
npm run --prefix docs build
4545
mkdir staging
4646
cp ./docs/.vitepress/dist/* staging -r
47-
- uses: actions/setup-java@v3
47+
- uses: actions/setup-java@v4
4848
with:
4949
java-version: '11'
5050
distribution: 'temurin'

.github/workflows/maven-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
target
2424
env:
2525
currentVersion: ${{ github.event.release.tag_name }}
26-
- uses: actions/setup-java@v3
26+
- uses: actions/setup-java@v4
2727
with:
2828
java-version: '11'
2929
distribution: 'temurin'
@@ -33,7 +33,7 @@ jobs:
3333
- name: mvn versions
3434
run: mvn versions:set -DnewVersion=${{ github.event.release.tag_name }}
3535
- name: Import GPG Key
36-
uses: crazy-max/ghaction-import-gpg@v5.0.0
36+
uses: crazy-max/ghaction-import-gpg@v6.1.0
3737
with:
3838
gpg_private_key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
3939
passphrase: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}

.github/workflows/maven.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
- name: Set up JDK 11
25-
uses: actions/setup-java@v3
25+
uses: actions/setup-java@v4
2626
with:
2727
java-version: '11'
2828
distribution: 'temurin'
@@ -35,7 +35,7 @@ jobs:
3535
permissions:
3636
contents: write # If there is a protection rule on the repository, will need to grant write permission to the workflow.
3737
steps:
38-
- uses: actions/checkout@v3 # v2 minimum required
38+
- uses: actions/checkout@v4 # v2 minimum required
3939
- uses: axel-op/googlejavaformat-action@v3
4040
with:
4141
args: "--skip-sorting-imports --replace"

.github/workflows/sonarcloud.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@ jobs:
2020
name: Build and analyze
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2626
- name: Set up JDK 17
27-
uses: actions/setup-java@v3
27+
uses: actions/setup-java@v4
2828
with:
2929
java-version: 17
3030
distribution: 'zulu' # Alternative distribution options are available.
3131
- name: Cache SonarCloud packages
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ~/.sonar/cache
3535
key: ${{ runner.os }}-sonar
3636
restore-keys: ${{ runner.os }}-sonar
3737
- name: Cache Maven packages
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/.m2
4141
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

docs/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"preview": "vitepress preview"
99
},
1010
"dependencies": {
11-
"vitepress-carbon": "^1.3.3"
11+
"vitepress-carbon": "^1.4.3",
12+
"vitepress": "^1.4.0"
1213
}
1314
}

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
<plugin>
8080
<groupId>org.apache.maven.plugins</groupId>
8181
<artifactId>maven-javadoc-plugin</artifactId>
82-
<version>3.8.0</version>
82+
<version>3.10.1</version>
8383
<executions>
8484
<execution>
8585
<id>attach-javadocs</id>
@@ -148,7 +148,7 @@
148148
<plugin>
149149
<groupId>org.sonatype.central</groupId>
150150
<artifactId>central-publishing-maven-plugin</artifactId>
151-
<version>0.5.0</version>
151+
<version>0.6.0</version>
152152
<extensions>true</extensions>
153153
<configuration>
154154
<publishingServerId>central</publishingServerId>

0 commit comments

Comments
 (0)