Skip to content

Commit a51b631

Browse files
committed
releng: Update Maven plugins and GH actions
1 parent d3b344e commit a51b631

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
steps:
4646
- name: Checkout
47-
uses: actions/checkout@v2
47+
uses: actions/checkout@v3
4848
# always act on the modified source code (even for event pull_request_target)
4949
# is considered potentially unsafe (https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) but actions are only executed after approval from committers
5050
with:
@@ -53,7 +53,7 @@ jobs:
5353
persist-credentials: false
5454

5555
- name: Set up JDK
56-
uses: actions/setup-java@v2
56+
uses: actions/setup-java@v3
5757
with:
5858
cache: 'maven'
5959
distribution: 'temurin'

pom.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -126,60 +126,60 @@
126126
<plugins>
127127
<plugin>
128128
<artifactId>maven-surefire-plugin</artifactId>
129-
<version>3.0.0-M5</version>
129+
<version>3.1.0</version>
130130
</plugin>
131131
<plugin>
132132
<artifactId>maven-failsafe-plugin</artifactId>
133-
<version>3.0.0-M5</version>
133+
<version>3.1.0</version>
134134
</plugin>
135135
<plugin>
136136
<artifactId>maven-compiler-plugin</artifactId>
137-
<version>3.8.1</version>
137+
<version>3.11.0</version>
138138
</plugin>
139139
<plugin>
140140
<artifactId>maven-install-plugin</artifactId>
141-
<version>3.0.0-M1</version>
141+
<version>3.1.1</version>
142142
</plugin>
143143
<plugin>
144144
<artifactId>maven-deploy-plugin</artifactId>
145-
<version>3.0.0-M1</version>
145+
<version>3.1.1</version>
146146
</plugin>
147147
<plugin>
148148
<artifactId>maven-resources-plugin</artifactId>
149-
<version>3.2.0</version>
149+
<version>3.3.1</version>
150150
</plugin>
151151
<plugin>
152152
<artifactId>maven-clean-plugin</artifactId>
153-
<version>3.1.0</version>
153+
<version>3.2.0</version>
154154
</plugin>
155155
<plugin>
156156
<artifactId>maven-jar-plugin</artifactId>
157-
<version>3.2.0</version>
157+
<version>3.3.0</version>
158158
</plugin>
159159
<plugin>
160160
<artifactId>maven-javadoc-plugin</artifactId>
161-
<version>3.3.1</version>
161+
<version>3.5.0</version>
162162
</plugin>
163163
<plugin>
164164
<artifactId>maven-source-plugin</artifactId>
165165
<version>3.2.1</version>
166166
</plugin>
167167
<plugin>
168168
<artifactId>maven-release-plugin</artifactId>
169-
<version>3.0.0-M4</version>
169+
<version>3.0.0</version>
170170
</plugin>
171171
<plugin>
172172
<artifactId>maven-dependency-plugin</artifactId>
173-
<version>3.2.0</version>
173+
<version>3.5.0</version>
174174
</plugin>
175175
<plugin>
176176
<artifactId>maven-enforcer-plugin</artifactId>
177-
<version>3.0.0-M3</version>
177+
<version>3.3.0</version>
178178
</plugin>
179179
<plugin>
180180
<groupId>org.apache.maven.plugins</groupId>
181181
<artifactId>maven-gpg-plugin</artifactId>
182-
<version>3.0.1</version>
182+
<version>3.1.0</version>
183183
</plugin>
184184
<plugin>
185185
<groupId>org.sonatype.plugins</groupId>
@@ -189,16 +189,16 @@
189189
<plugin>
190190
<groupId>org.codehaus.mojo</groupId>
191191
<artifactId>license-maven-plugin</artifactId>
192-
<version>2.0.0</version>
192+
<version>2.0.1</version>
193193
</plugin>
194194
<plugin>
195195
<groupId>org.jacoco</groupId>
196196
<artifactId>jacoco-maven-plugin</artifactId>
197-
<version>0.8.7</version>
197+
<version>0.8.10</version>
198198
</plugin>
199199
<plugin>
200200
<artifactId>maven-invoker-plugin</artifactId>
201-
<version>3.2.2</version>
201+
<version>3.5.1</version>
202202
</plugin>
203203
</plugins>
204204
</pluginManagement>

0 commit comments

Comments
 (0)