diff options
author | fvogel <fvogelnew1@free.fr> | 2021-05-24 08:57:38 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2021-05-24 08:57:38 (GMT) |
commit | 15a9e8ad2a1bb7ec152f37bfd4f428e44ff6a946 (patch) | |
tree | d0f3c843b345b8b5683938e033f8eddb8a2044aa /.github | |
parent | 66663a52d1fa304556274be841b79205b9bd90bd (diff) | |
download | tk-15a9e8ad2a1bb7ec152f37bfd4f428e44ff6a946.zip tk-15a9e8ad2a1bb7ec152f37bfd4f428e44ff6a946.tar.gz tk-15a9e8ad2a1bb7ec152f37bfd4f428e44ff6a946.tar.bz2 |
According to GitHub Actions documentation ( https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on ), the correct runner for macOs Big Sur is macos-11, not macos-11.0. Follow the doc, even if it was working with macos-11.0
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mac-build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 0bd8cf6..f2a11eb 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -4,7 +4,7 @@ env: ERROR_ON_FAILURES: 1 jobs: xcode: - runs-on: macos-11.0 + runs-on: macos-11 defaults: run: shell: bash |