Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8393c7a

Browse files
committed
workaround for actions/runner#2033
Signed-off-by: oleg.hoefling <[email protected]>
1 parent 1858a46 commit 8393c7a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/manylinux2010.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ jobs:
88
matrix:
99
python-abi: [cp36-cp36m, cp37-cp37m, cp38-cp38, cp39-cp39]
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v1
1212
- name: Install build dependencies
1313
run: |
14+
# https://github.com/actions/runner/issues/2033
15+
chown -R $(id -u):$(id -g) $PWD
1416
/opt/python/${{ matrix.python-abi }}/bin/pip install --upgrade pip setuptools wheel build
1517
- name: Set environment variables
1618
shell: bash

0 commit comments

Comments
 (0)