From d59a35d3a9e059ce1f482bf7b1a9485cd0620295 Mon Sep 17 00:00:00 2001 From: Ryan Carsten Schmidt Date: Wed, 29 May 2024 23:07:02 -0500 Subject: [PATCH] ci: remove macos-11; add macos-13; upgrade to checkout@v4 and upload-artifact@v4 (#69) * ci: upgrade to checkout@v4 and upload-artifact@v4 * ci: remove macos-11; add macos-13 macos-11 will be removed by the end of June; replace it with macos-13. macos-14 a.k.a. macos-latest is already covered by cmake-fat.yml. --- .github/workflows/cmake-fat.yml | 4 ++-- .github/workflows/cmake.yml | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cmake-fat.yml b/.github/workflows/cmake-fat.yml index baef916..0d657ea 100644 --- a/.github/workflows/cmake-fat.yml +++ b/.github/workflows/cmake-fat.yml @@ -11,7 +11,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true @@ -32,7 +32,7 @@ jobs: run: make mpw - name: Archive - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: mpw fat path: ${{runner.workspace}}/build/bin/mpw diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 07835a3..3ab434b 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -11,10 +11,10 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [macos-12, macos-11] + os: [macos-12, macos-13] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true @@ -35,8 +35,7 @@ jobs: run: cmake --build . --config $BUILD_TYPE - name: Archive - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: mpw ${{ matrix.os }} path: ${{runner.workspace}}/build/bin/mpw -