Skip to content

Commit d4f47a4

Browse files
author
may
committed
Update Action workflows
1 parent c4fcfbe commit d4f47a4

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/cs-comparison.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/setup-java@v4
2121
with:
2222
distribution: 'adopt'
23-
java-version: '17'
23+
java-version: '21'
2424
cache: 'gradle'
2525

2626
- name: CS Comparison

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/setup-java@v4
2020
with:
2121
distribution: 'adopt'
22-
java-version: '17'
22+
java-version: '21'
2323
cache: 'gradle'
2424

2525
- name: Cache SonarCloud packages

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
uses: actions/setup-java@v4
2222
with:
2323
distribution: 'adopt'
24-
java-version: '17'
24+
java-version: '21'
2525
cache: 'gradle'
2626

27-
- name: Publish
27+
- name: Publish to Maven Central (Portal)
2828
run: |
2929
chmod +x gradlew
30-
./gradlew publish closeAndReleaseRepository
30+
./gradlew publishAndReleaseToMavenCentral --no-configuration-cache
3131
env:
32-
ORG_GRADLE_PROJECT_nexusUsername: ${{ secrets.NEXUS_USERNAME }}
33-
ORG_GRADLE_PROJECT_nexusPassword: ${{ secrets.NEXUS_PASSWORD }}
34-
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SEER_GPG_SECRET_KEY }}
35-
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SEER_GPG_PASSWORD }}
32+
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
33+
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
34+
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
35+
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}

.github/workflows/upload-algorithms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/setup-java@v4
2222
with:
2323
distribution: 'adopt'
24-
java-version: '17'
24+
java-version: '21'
2525

2626
- name: Create algorithm zips
2727
if: ${{startsWith(github.ref, 'refs/tags/v') }}

0 commit comments

Comments
 (0)