Skip to content

Commit 2c56393

Browse files
committed
Fix checkout step in GH release action
1 parent 1e6a944 commit 2c56393

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/release-and-deploy.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@ jobs:
6363
echo Tag v${{ inputs.release_version }} already exists, release aborted >> $GITHUB_STEP_SUMMARY
6464
exit 1
6565
66-
# Set up Java + Maven
67-
- name: Set up JDK 21
68-
uses: actions/setup-java@v4
66+
# Set up java with maven cache
67+
- uses: actions/checkout@v4
68+
- name: Set up JDK 17
69+
uses: actions/setup-java@v3
6970
with:
7071
distribution: 'temurin'
7172
java-version: '21'

0 commit comments

Comments
 (0)