We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72052e8 commit 9712be1Copy full SHA for 9712be1
.github/actions/prepare_snap7/action.yml
@@ -31,4 +31,10 @@ runs:
31
32
- name: Update wheel
33
shell: bash
34
+ if: ${{ runner.os != 'macOS'}}
35
+ run: python3 -m pip install --upgrade pip wheel build setuptools
36
+
37
+ - name: Update wheel
38
+ shell: bash
39
+ if: ${{ runner.os == 'macOS'}}
40
run: python3 -m pip install --upgrade pip wheel build setuptools --break-system-packages
.github/workflows/build-and-test.yml
@@ -56,7 +56,7 @@ jobs:
56
57
osx-build:
58
name: Build wheel for osx
59
- runs-on: macos-latest
+ runs-on: macos-11
60
steps:
61
- name: Checkout
62
uses: actions/checkout@v3
0 commit comments