Skip to content

Commit 664c0c5

Browse files
committed
Upgrade checkout and setup-python
1 parent 84e4b4c commit 664c0c5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,23 @@ jobs:
1919

2020
steps:
2121
- name: Check out the repository
22-
uses: actions/[email protected]
22+
uses: actions/checkout@v3
23+
2324
- name: Setup Python
24-
uses: actions/setup-python@v2.2.1
25+
uses: actions/setup-python@v4.2.0
2526
with:
2627
python-version: ${{ matrix.PYTHON.VERSION }}
28+
2729
- name: Upgrade pip
2830
run: |
2931
pip install --constraint=.github/workflows/constraints.txt pip
3032
pip --version
33+
3134
- name: Install Tox
3235
run: |
3336
pip install --constraint=.github/workflows/constraints.txt tox
3437
tox --version
38+
3539
- name: Run Tox
3640
run: tox
3741
env:

0 commit comments

Comments
 (0)