Skip to content

Commit

Permalink
Fix python version pin for lint workflow (#1885)
Browse files Browse the repository at this point in the history
Using major.minor notation selects the latest patch version.

https://github.com/actions/setup-python/blob/v4/docs/advanced-usage.md#using-the-python-version-input

b/308798332
  • Loading branch information
oxve authored Nov 1, 2023
1 parent 0fd31ed commit d0ce94a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '^3.7.x'
python-version: '3.7'
- name: Install Pip Packages
run: pip install -r ${GITHUB_WORKSPACE}/requirements.txt
- name: Download Resources
Expand Down

0 comments on commit d0ce94a

Please sign in to comment.