Merge pull request #15913 from MikeMcQuaid/github_actions_python_workaround

workflows/tests: workaround GitHub Actions python issues.
This commit is contained in:
Mike McQuaid 2023-08-26 12:41:15 +01:00 committed by GitHub
commit aaf9091b21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -363,7 +363,10 @@ jobs:
- name: Install brew tests macOS dependencies - name: Install brew tests macOS dependencies
if: runner.os != 'Linux' if: runner.os != 'Linux'
run: brew install subversion run: |
# Workaround GitHub Actions Python issues
brew unlink python && brew link --overwrite python
brew install subversion
# brew tests doesn't like world writable directories # brew tests doesn't like world writable directories
- name: Cleanup permissions - name: Cleanup permissions