Skip to content

Commit 6b6cb4e

Browse files
authored
chore: fixing setup-java version (#803)
Signed-off-by: Emmanuel Hugonnet <ehugonne@redhat.com>
1 parent ef0d713 commit 6b6cb4e

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/release-to-maven-central.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
tags:
66
- 'v?[0-9]+.[0-9]+.[0-9]+*' # Trigger on tags like v1.0.0, 1.2.3, v1.2.3.Alpha1 etc.
7-
87
jobs:
98
publish:
109
# Only run this job for the main repository, not for forks
@@ -18,15 +17,15 @@ jobs:
1817
uses: actions/checkout@v6
1918

2019
- name: Set up JDK 17
21-
uses: actions/setup-java@v6
20+
uses: actions/setup-java@v5
2221
with:
2322
java-version: '17'
2423
distribution: 'temurin'
2524
cache: maven
2625

2726
# Use secrets to import GPG key
2827
- name: Import GPG key
29-
uses: crazy-max/ghaction-import-gpg@v6
28+
uses: crazy-max/ghaction-import-gpg@v7
3029
with:
3130
gpg_private_key: ${{ secrets.GPG_SIGNING_KEY }}
3231
passphrase: ${{ secrets.GPG_SIGNING_PASSPHRASE }}

0 commit comments

Comments
 (0)