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.
This commit is contained in:
Ryan Carsten Schmidt 2024-05-29 23:07:02 -05:00 committed by GitHub
parent 9951892251
commit d59a35d3a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 6 deletions

View File

@ -11,7 +11,7 @@ jobs:
runs-on: macos-latest runs-on: macos-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
submodules: true submodules: true
@ -32,7 +32,7 @@ jobs:
run: make mpw run: make mpw
- name: Archive - name: Archive
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: mpw fat name: mpw fat
path: ${{runner.workspace}}/build/bin/mpw path: ${{runner.workspace}}/build/bin/mpw

View File

@ -11,10 +11,10 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
os: [macos-12, macos-11] os: [macos-12, macos-13]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
submodules: true submodules: true
@ -35,8 +35,7 @@ jobs:
run: cmake --build . --config $BUILD_TYPE run: cmake --build . --config $BUILD_TYPE
- name: Archive - name: Archive
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: mpw ${{ matrix.os }} name: mpw ${{ matrix.os }}
path: ${{runner.workspace}}/build/bin/mpw path: ${{runner.workspace}}/build/bin/mpw