Skip to content

Commit 41f6808

Browse files
authored
Merge pull request #11 from pybuilder/fix_homebrew_upgrade
Fix homebrew upgrade by forcing overwrite
2 parents 2d07f64 + e86d77f commit 41f6808

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ runs:
7878
if: inputs.install-python == 'true' && runner.os == 'macOS' && inputs.homebrew-python == 'true'
7979
run: |
8080
brew update
81-
brew upgrade
81+
brew upgrade --overwrite
8282
brew uninstall --force --ignore-dependencies 'python@${{ inputs.python-version }}' || true
8383
brew install --overwrite 'python@${{ inputs.python-version }}'
8484
echo "/usr/local/opt/python@${{ inputs.python-version }}/Frameworks/Python.framework/Versions/${{ inputs.python-version }}/bin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)