Skip to content

Commit 61bf94d

Browse files
authored
Merge pull request #208 from fosslight/fix_warning
Fix github action warning message
2 parents 2d80c3b + 225f9a6 commit 61bf94d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pull-request.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ jobs:
4545
python-version: ${{ matrix.python-version }}
4646
- name: Install dependencies
4747
run: |
48-
brew install openssl
48+
if ! brew list openssl@3 &>/dev/null; then
49+
brew install openssl@3
50+
fi
4951
brew install libmagic
5052
brew install postgresql
5153
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)