@@ -21,16 +21,16 @@ jobs:
2121 strategy :
2222 fail-fast : false
2323 matrix :
24- os : [macos-13 , windows-latest, ubuntu-latest]
24+ os : [macos-15-intel , windows-latest, ubuntu-latest]
2525 steps :
2626 - name : Checkout
27- uses : actions/checkout@v4
27+ uses : actions/checkout@v6
2828 - name : Run setup-java with the cache for gradle
2929 uses : ./
3030 id : setup-java
3131 with :
3232 distribution : ' adopt'
33- java-version : ' 11 '
33+ java-version : ' 17 '
3434 cache : gradle
3535 - name : Create files to cache
3636 # Need to avoid using Gradle daemon to stabilize the save process on Windows
@@ -46,11 +46,11 @@ jobs:
4646 strategy :
4747 fail-fast : false
4848 matrix :
49- os : [macos-13 , windows-latest, ubuntu-latest]
49+ os : [macos-15-intel , windows-latest, ubuntu-latest]
5050 needs : gradle-save
5151 steps :
5252 - name : Checkout
53- uses : actions/checkout@v4
53+ uses : actions/checkout@v6
5454 - name : Run setup-java with the cache for gradle
5555 uses : ./
5656 id : setup-java
@@ -70,10 +70,10 @@ jobs:
7070 strategy :
7171 fail-fast : false
7272 matrix :
73- os : [macos-13 , windows-latest, ubuntu-latest]
73+ os : [macos-15-intel , windows-latest, ubuntu-latest]
7474 steps :
7575 - name : Checkout
76- uses : actions/checkout@v4
76+ uses : actions/checkout@v6
7777 - name : Run setup-java with the cache for maven
7878 uses : ./
7979 id : setup-java
@@ -93,11 +93,11 @@ jobs:
9393 strategy :
9494 fail-fast : false
9595 matrix :
96- os : [macos-13 , windows-latest, ubuntu-latest]
96+ os : [macos-15-intel , windows-latest, ubuntu-latest]
9797 needs : maven-save
9898 steps :
9999 - name : Checkout
100- uses : actions/checkout@v4
100+ uses : actions/checkout@v6
101101 - name : Run setup-java with the cache for maven
102102 uses : ./
103103 id : setup-java
@@ -121,10 +121,10 @@ jobs:
121121 strategy :
122122 fail-fast : false
123123 matrix :
124- os : [macos-13 , windows-latest, ubuntu-latest ]
124+ os : [macos-15-intel , windows-latest, ubuntu-22.04 ]
125125 steps :
126126 - name : Checkout
127- uses : actions/checkout@v4
127+ uses : actions/checkout@v6
128128 - name : Run setup-java with the cache for sbt
129129 uses : ./
130130 id : setup-java
@@ -133,15 +133,15 @@ jobs:
133133 java-version : ' 11'
134134 cache : sbt
135135 - name : Setup SBT
136- if : matrix.os == 'macos-13 '
136+ if : matrix.os == 'macos-15-intel '
137137 run : |
138138 echo ""Installing SBT...""
139139 brew install sbt
140140 - name : Create files to cache
141141 run : sbt update
142142
143143 - name : Check files to cache on macos-latest
144- if : matrix.os == 'macos-13 '
144+ if : matrix.os == 'macos-15-intel '
145145 run : |
146146 if [ ! -d ~/Library/Caches/Coursier ]; then
147147 echo "::error::The ~/Library/Caches/Coursier directory does not exist unexpectedly"
@@ -170,11 +170,11 @@ jobs:
170170 strategy :
171171 fail-fast : false
172172 matrix :
173- os : [macos-13 , windows-latest, ubuntu-latest ]
173+ os : [macos-15-intel , windows-latest, ubuntu-22.04 ]
174174 needs : sbt-save
175175 steps :
176176 - name : Checkout
177- uses : actions/checkout@v4
177+ uses : actions/checkout@v6
178178 - name : Run setup-java with the cache for sbt
179179 uses : ./
180180 id : setup-java
@@ -184,7 +184,7 @@ jobs:
184184 cache : sbt
185185
186186 - name : Confirm that ~/Library/Caches/Coursier directory has been made
187- if : matrix.os == 'macos-13 '
187+ if : matrix.os == 'macos-15-intel '
188188 run : |
189189 if [ ! -d ~/Library/Caches/Coursier ]; then
190190 echo "::error::The ~/Library/Caches/Coursier directory does not exist unexpectedly"
0 commit comments