Skip to content

Commit

Permalink
ci: remove macos-11; add macos-13; upgrade to checkout@v4 and upload-…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
ryandesign authored May 30, 2024
1 parent 9951892 commit d59a35d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake-fat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -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
7 changes: 3 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

0 comments on commit d59a35d

Please sign in to comment.