From 08dd7d49f4a156aad1402e4b5ca76b4a0413b4bd Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Mon, 13 May 2024 08:55:20 +0200 Subject: [PATCH] [CI] use macos-13 --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1e0f279..2f0c403 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,10 +10,10 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ macos-latest, windows-latest, ubuntu-22.04 ] + os: [ macos-13, windows-latest, ubuntu-22.04 ] arch: [ x64, arm64 ] exclude: - - os: macos-latest + - os: macos-13 arch: arm64 - os: windows-latest arch: arm64 @@ -58,7 +58,7 @@ jobs: run: bash ./build_scripts/unix.sh - name: Build OctoBot Binary on MacOS - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-13' env: GH_REPO: Drakkar-Software/OctoBot-Tentacles OCTOBOT_GH_REPO: https://github.com/Drakkar-Software/OctoBot.git @@ -81,7 +81,7 @@ jobs: - name: Upload OctoBot Binary on MacOS uses: actions/upload-artifact@v3 - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-13' with: name: OctoBot_macos_${{ matrix.arch }} path: OctoBot/OctoBot_${{ matrix.arch }}