Skip to content

Commit

Permalink
Update Python to v3.9 (#222)
Browse files Browse the repository at this point in the history
* Update Python from 3.8 to 3.9

* Add missing "Install Requirements" title in Github Action
  • Loading branch information
nickspaargaren authored Oct 8, 2024
1 parent 188c238 commit 39e84b6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automated-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'
- name: Update categories
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dns-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Python setup
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'
- name: Install Requirements
run: pip install -r requirements.txt
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'
- run: pip install -r requirements.txt
- name: Check
Expand All @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'
- run: pip install -r requirements.txt
- name: Check for duplicate lines
Expand All @@ -36,9 +36,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'
- run: pip install -r requirements.txt
- name: Install Requirements
run: pip install -r requirements.txt
- name: Check if list includes regex domains
run: |
cd scripts
Expand Down

0 comments on commit 39e84b6

Please sign in to comment.