Skip to content

Commit

Permalink
⬆️ update MacOS runner versions in GitHub CI pipeline (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmatthes authored Aug 8, 2024
1 parent 32e5f28 commit baa1f3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-11, macos-latest, ubuntu-latest, windows-latest]
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -53,7 +53,7 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
key: ${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install cargo-nextest
uses: taiki-e/install-action@nextest
- name: Run test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- os: windows-latest
target: windows-x86_64
# Apple targets are not properly signed. Users will have to mark the binaries as secure manually.
- os: macos-11
- os: macos-13
target: macos-x86_64
- os: macos-latest
target: macos-arm64
Expand All @@ -37,7 +37,7 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
key: ${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install dependencies
if: runner.os == 'Linux'
run: |
Expand Down

0 comments on commit baa1f3d

Please sign in to comment.