File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 build :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v2
12+ - uses : actions/checkout@v4
1313 with :
1414 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
15- - uses : actions/setup-java@v1
15+ - uses : actions/setup-java@v4
1616 with :
17+ distribution : temurin
1718 java-version : 11
1819 - name : Cache SonarCloud packages
19- uses : actions/cache@v1
20+ uses : actions/cache@v4
2021 with :
2122 path : ~/.sonar/cache
2223 key : ${{ runner.os }}-sonar
2324 restore-keys : ${{ runner.os }}-sonar
2425 - name : Cache Maven packages
25- uses : actions/cache@v1
26+ uses : actions/cache@v4
2627 with :
2728 path : ~/.m2
2829 key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change 311311 <extensions >true</extensions >
312312 <configuration >
313313 <serverId >ossrh</serverId >
314- <nexusUrl >https://s01.oss.sonatype.org/</nexusUrl >
314+ <!-- Legacy OSSRH (s01.oss.sonatype.org) was retired and now
315+ returns 404. This is Sonatype's OSSRH Staging API
316+ compatibility endpoint, which keeps this plugin working
317+ against the Central Portal. -->
318+ <nexusUrl >https://ossrh-staging-api.central.sonatype.com/</nexusUrl >
315319 <autoReleaseAfterClose >true</autoReleaseAfterClose >
316320 </configuration >
317321 </plugin >
You can’t perform that action at this time.
0 commit comments