Skip to content

Commit

Permalink
Set the python-version explicitly when setup python
Browse files Browse the repository at this point in the history
We need to provide the python-version explicitly when setup python
to avoid the warning during setup.
  • Loading branch information
WangGithubUser committed Jul 28, 2023
1 parent fc3c8ea commit cfec3eb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install pre-commit
run: pip install -r requirements-dev.txt
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pyre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install Dependencies
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pysa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install Dependencies
run: |
Expand Down

0 comments on commit cfec3eb

Please sign in to comment.