Skip to content

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
os:
2323
- ubuntu-latest
2424
- windows-latest
25-
- macos-latest
25+
# pinned to macos-13 due to https://github.com/actions/runner-images/issues/9254
26+
- macos-13
2627
java:
2728
- 8
2829
- 17
@@ -40,19 +41,13 @@ jobs:
4041
- name: Setup Gradle
4142
uses: gradle/actions/setup-gradle@v3
4243
- name: Install Docker on macOS
43-
if: matrix.os == 'macos-latest'
44+
if: matrix.os == 'macos-13'
4445
uses: douglascamata/setup-docker-macos-action@v1-alpha
4546
- name: Login to Docker Hub
4647
uses: docker/login-action@v3
4748
with:
4849
username: ${{ secrets.DOCKERHUB_USERNAME }}
4950
password: ${{ secrets.DOCKERHUB_TOKEN }}
50-
- name: docker version
51-
run: docker version
52-
- name: docker info
53-
run: docker info
54-
- name: java version
55-
run: java -version
5651
# - name: Debug
5752
# run: ./gradlew checkDockerClient --info --stacktrace
5853
- name: clean build

0 commit comments

Comments
 (0)