diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-07-27 21:06:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-27 21:06:34 +0800 |
commit | 8ef509b85bc53a452ee44ee4757fd072a6d77e8f (patch) | |
tree | eb305e0b081699a8f5eda631fb292d99e4263f8d /.github | |
parent | 5bbc5edf43e6ede3d162f0463cb74c0a6d58cc1d (diff) | |
download | Nim-8ef509b85bc53a452ee44ee4757fd072a6d77e8f.tar.gz |
fixes broken CI; bump macOS version to macos-11 (#20098)
* bump macOS image on Azure CI to macos-11 ##[warning]The macOS-10.15 environment is deprecated, consider switching to macos-11(macos-latest), macos-12 instead. For more details see https://github.com/actions/virtual-environments/issues/5583 * fix CI error
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci_docs.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ci_packages.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci_docs.yml b/.github/workflows/ci_docs.yml index 6ae228d2d..9055fab2a 100644 --- a/.github/workflows/ci_docs.yml +++ b/.github/workflows/ci_docs.yml @@ -40,7 +40,7 @@ jobs: - target: windows os: windows-2019 - target: osx - os: macos-10.15 + os: macos-11 name: ${{ matrix.target }} runs-on: ${{ matrix.os }} diff --git a/.github/workflows/ci_packages.yml b/.github/workflows/ci_packages.yml index 529e6e8b6..a939936b6 100644 --- a/.github/workflows/ci_packages.yml +++ b/.github/workflows/ci_packages.yml @@ -6,7 +6,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-10.15] + os: [ubuntu-20.04, macos-11] cpu: [amd64] batch: ["allowed_failures", "0_3", "1_3", "2_3"] # list of `index_num` name: '${{ matrix.os }} (batch: ${{ matrix.batch }})' |