Skip to content

Commit

Permalink
Merge pull request #255 from TwilioDevEd/SECOPS-4962
Browse files Browse the repository at this point in the history
Freezing OS versions due to GH Action issue
  • Loading branch information
dprothero authored May 1, 2024
2 parents 3afe5bf + 3dbdd41 commit 27c880d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-20.04, macos-13]
python: ["3.6", "3.7", "3.8"]

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Selenium Chrome Driver (OSX)
if: runner.os == 'macOs'
run: brew cask install chromedriver
run: |
rm /usr/local/bin/chromedriver
brew install --cask chromedriver
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
Expand Down

0 comments on commit 27c880d

Please sign in to comment.