From fd81e5b3c4fb17a53efc913d38011a31ff450cca Mon Sep 17 00:00:00 2001 From: James4Ever0 Date: Sun, 15 Jan 2023 20:57:07 +0800 Subject: [PATCH] Update main.yml fix python version error python 3.5 may be EOL so not supported by github actions? --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d719f07ead..df706423d7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,10 +17,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.5 - uses: actions/setup-python@v2 + - name: Set up Python 3.9 + uses: actions/setup-python@v4.5.0 with: - python-version: 3.5 + python-version: 3.9 # backward compatible? - name: setup env & install getproxy run: | git config --global user.name "fate0"