From d3b34459ae8b89c7e3e1f7d3993ca80c675faa85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=8A?= =?UTF-8?q?=D1=80=20=D0=9A=D1=83=D1=80=D1=82=D0=B0=D0=BA=D0=BE=D0=B2?= Date: Tue, 4 Nov 2025 20:11:13 +0200 Subject: [PATCH] Switch mavenBuild GHA to MacOS 14 MacOS 13 is being phased out as per https://github.com/actions/runner-images/issues/13046 --- .github/workflows/mavenBuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mavenBuild.yml b/.github/workflows/mavenBuild.yml index 608ba24d627..f45ba7624cc 100644 --- a/.github/workflows/mavenBuild.yml +++ b/.github/workflows/mavenBuild.yml @@ -45,7 +45,7 @@ jobs: config: - { name: Linux, os: ubuntu-latest } - { name: Windows, os: windows-latest } - - { name: MacOS, os: macos-13 } + - { name: MacOS, os: macos-14 } defaults: run: # Run on bash/cmd, because powershell (the Windows default) interprets dots in arguments differently shell: ${{ matrix.config.name == 'Windows' && 'cmd' || 'bash' }}