Skip to content

Commit 6efc44e

Browse files
Update plugin/CI versions (#17)
* Update plugin versions * Update GitHub action version
1 parent da7b70e commit 6efc44e

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Build
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
1616
- name: Setup up JDK
@@ -20,7 +20,7 @@ jobs:
2020
cache: 'maven'
2121
distribution: 'temurin'
2222
- name: Cache SonarCloud packages
23-
uses: actions/cache@v1
23+
uses: actions/cache@v3
2424
with:
2525
path: ~/.sonar/cache
2626
key: ${{ runner.os }}-sonar

.github/workflows/maven-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
publish:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Set up Maven Central Repository
1414
uses: actions/setup-java@v3
1515
with:

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@
6060
<dependency>
6161
<groupId>org.junit.jupiter</groupId>
6262
<artifactId>junit-jupiter</artifactId>
63-
<version>5.9.2</version>
63+
<version>5.10.1</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>org.mockito</groupId>
6767
<artifactId>mockito-core</artifactId>
68-
<version>5.1.1</version>
68+
<version>5.7.0</version>
6969
<scope>test</scope>
7070
</dependency>
7171
<dependency>
@@ -107,7 +107,7 @@
107107
<plugin>
108108
<groupId>org.apache.maven.plugins</groupId>
109109
<artifactId>maven-enforcer-plugin</artifactId>
110-
<version>3.2.1</version>
110+
<version>3.4.1</version>
111111
<executions>
112112
<execution>
113113
<id>enforce-maven</id>
@@ -127,7 +127,7 @@
127127
<plugin>
128128
<groupId>org.apache.maven.plugins</groupId>
129129
<artifactId>maven-source-plugin</artifactId>
130-
<version>3.2.1</version>
130+
<version>3.3.0</version>
131131
<executions>
132132
<execution>
133133
<id>attach-sources</id>
@@ -140,7 +140,7 @@
140140
<plugin>
141141
<groupId>org.apache.maven.plugins</groupId>
142142
<artifactId>maven-javadoc-plugin</artifactId>
143-
<version>3.4.1</version>
143+
<version>3.6.2</version>
144144
<executions>
145145
<execution>
146146
<id>attach-javadocs</id>
@@ -153,7 +153,7 @@
153153
<plugin>
154154
<groupId>org.apache.maven.plugins</groupId>
155155
<artifactId>maven-gpg-plugin</artifactId>
156-
<version>3.0.1</version>
156+
<version>3.1.0</version>
157157
<executions>
158158
<execution>
159159
<id>sign-artifacts</id>
@@ -185,15 +185,15 @@
185185
<plugin>
186186
<groupId>org.apache.maven.plugins</groupId>
187187
<artifactId>maven-release-plugin</artifactId>
188-
<version>3.0.0-M7</version>
188+
<version>3.0.1</version>
189189
<configuration>
190190
<tagNameFormat>@{project.version}</tagNameFormat>
191191
</configuration>
192192
</plugin>
193193
<plugin>
194194
<groupId>org.apache.maven.plugins</groupId>
195195
<artifactId>maven-surefire-plugin</artifactId>
196-
<version>3.0.0-M8</version>
196+
<version>3.2.2</version>
197197
</plugin>
198198
</plugins>
199199
</build>

0 commit comments

Comments
 (0)