From 88ef012c0f4ba677044334318d770ac12598e8b9 Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Wed, 14 Feb 2024 11:18:41 +0100 Subject: [PATCH] CI: Fix osx job --- .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 383f80f88..d3009cf5f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,10 +7,10 @@ on: branches: - master jobs: - osx_10_15: - runs-on: macos-10.15 + osx: + runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Build run: bash tools/gha_osx.sh windows-2019: @@ -32,7 +32,7 @@ jobs: if: ${{ github.event_name }} == 'push' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install and Build 🔧 run: bash tools/gha_deploydocs.sh - name: Upload to github pages 🚀