From e6f6a7d32c56349c26b84b13a1f5243a5caaded5 Mon Sep 17 00:00:00 2001 From: Maciej Barelkowski Date: Tue, 8 Oct 2024 14:00:36 +0200 Subject: [PATCH] ci: use macos-latest runner Related to https://github.com/actions/runner-images/issues/10721 --- .github/workflows/BUILD_ON_DEMAND.yml | 2 +- .github/workflows/CI.yml | 2 +- .github/workflows/NIGHTLY.yml | 2 +- .github/workflows/RELEASE.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/BUILD_ON_DEMAND.yml b/.github/workflows/BUILD_ON_DEMAND.yml index 51e4c5e8c7..2114b64ca3 100644 --- a/.github/workflows/BUILD_ON_DEMAND.yml +++ b/.github/workflows/BUILD_ON_DEMAND.yml @@ -12,7 +12,7 @@ jobs: Build: strategy: matrix: - os: [ ubuntu-latest, macos-12, windows-2022 ] + os: [ ubuntu-latest, macos-latest, windows-2022 ] runs-on: ${{ matrix.os }} env: ON_DEMAND: true diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 9b192239f8..895996110b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -5,7 +5,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-latest, macos-12, windows-2022 ] + os: [ ubuntu-latest, macos-latest, windows-2022 ] runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/NIGHTLY.yml b/.github/workflows/NIGHTLY.yml index 676f691a46..92d5da32b9 100644 --- a/.github/workflows/NIGHTLY.yml +++ b/.github/workflows/NIGHTLY.yml @@ -10,7 +10,7 @@ jobs: - os: ubuntu-latest files: - 'dist/camunda-modeler-nightly-linux-x64.tar.gz' - - os: macos-12 + - os: macos-latest files: - 'dist/camunda-modeler-nightly-mac-arm64.dmg' - 'dist/camunda-modeler-nightly-mac-arm64.zip' diff --git a/.github/workflows/RELEASE.yml b/.github/workflows/RELEASE.yml index 23e6c13487..e95e51e3c7 100644 --- a/.github/workflows/RELEASE.yml +++ b/.github/workflows/RELEASE.yml @@ -22,7 +22,7 @@ jobs: needs: Pre_release strategy: matrix: - os: [ ubuntu-latest, macos-12, windows-2022 ] + os: [ ubuntu-latest, macos-latest, windows-2022 ] fail-fast: false runs-on: ${{ matrix.os }}