Skip to content

Commit

Permalink
Importer: use Python 3.13 + use the HTTP proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
macbre authored Nov 21, 2024
1 parent 68f7fe9 commit d6bcc29
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/do-import.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.13


# https://github.com/actions/cache/blob/main/examples.md#using-pip-to-get-cache-location
Expand Down Expand Up @@ -56,11 +56,11 @@ jobs:
md5sum user-password.py
- name: Run the importer
# env:
env:
# set up HTTP(S) proxy for requests library
# https://docs.python-requests.org/en/master/user/advanced/#socks
# e.g. socks5://example.com:12345
# HTTP_PROXY: ${{ secrets.HTTP_PROXY }}
# HTTPS_PROXY: ${{ secrets.HTTP_PROXY }}
HTTP_PROXY: ${{ secrets.HTTP_PROXY }}
HTTPS_PROXY: ${{ secrets.HTTP_PROXY }}
run: |
make harvest

0 comments on commit d6bcc29

Please sign in to comment.