File tree Expand file tree Collapse file tree
.github/actions/setup-build Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,14 +86,14 @@ runs:
8686 echo '##################################'
8787
8888 # Extract major and minor version numbers (first two segments)
89- major_minor=$(echo "${{ steps.calc-version.outputs.effective-maven-url }}" | grep -oE '^[0-9]+\.[0-9]+')
89+ major_minor=$(echo "${{ steps.calc-version.outputs.effective-scala-version }}" | grep -oE '^[0-9]+\.[0-9]+')
9090 major=$(echo "$major_minor" | cut -d. -f1)
9191 minor=$(echo "$major_minor" | cut -d. -f2)
92- echo "Compiler version: major: $major, minor: $minor"
92+ echo "Compiler binary version: $major. $minor"
9393
9494 # If building Scala 3.6 or earlier use Java 8
9595 JDKVersion=17
96- if [[ "$major" -lt 3 ]] || ([[ "$major" -eq 3 ]] && [[ "$minor" -le 6 ]]); then
96+ if [[ "$major" -lt 3 ]] || ([[ "$major" -eq 3 ]] && [[ "$minor" -lt 7 ]]); then
9797 JDKVersion=8
9898 fi
9999
You can’t perform that action at this time.
0 commit comments