Skip to content

Commit 476c295

Browse files
committed
Fix MacOs JRE download URL
1 parent cbb61cf commit 476c295

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pull-request-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
mvn -B -pl tools/samm-cli clean verify -Dmaven.wagon.httpconnectionManager.ttlSeconds=60
8787
bundle="samm-bundle-DEV-SNAPSHOT-$(date +%s)"
8888
mkdir ${bundle}
89-
curl -Lo jre.tar.gz https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B9/OpenJDK21U-jre_x64_mac_hotspot_21.0.6_7.tar.gz
89+
curl -Lo jre.tar.gz https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B7/OpenJDK21U-jre_x64_mac_hotspot_21.0.6_7.tar.gz
9090
tar -xvf jre.tar.gz
9191
cp -r ./jdk-21.0.6+7-jre/Contents/Home ./${bundle}/jre
9292
cp tools/samm-cli/target/samm-cli-DEV-SNAPSHOT.jar ./${bundle}/

.github/workflows/release-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ jobs:
187187
run: |
188188
bundle="samm-bundle-$(date +%s)"
189189
mkdir ${bundle}
190-
curl -Lo jre.tar.gz https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.3%2B9/OpenJDK21U-jre_x64_mac_hotspot_21.0.3_9.tar.gz
190+
curl -Lo jre.tar.gz https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B7/OpenJDK21U-jre_x64_mac_hotspot_21.0.6_7.tar.gz
191191
tar -xvf jre.tar.gz
192-
cp -r ./jdk-21.0.3+9-jre/Contents/Home ./${bundle}/jre
192+
cp -r ./jdk-21.0.6+7-jre/Contents/Home ./${bundle}/jre
193193
cp tools/samm-cli/target/samm-cli-${{ github.event.inputs.release_version }}.jar ./${bundle}/
194194
195195
cat <<EOF > ./${bundle}/run.sh

0 commit comments

Comments
 (0)