Skip to content

Commit 31cb7fe

Browse files
authored
update_directory_md.yml: Remove GH Actions workaround
1 parent 6a2d787 commit 31cb7fe

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/update_directory_md.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ jobs:
55
update_directory_md:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v1
9-
- shell: python # Legacy Python 2.7.15 :-(
10-
run: import sys ; print("Python {}.{}.{}".format(*sys.version_info))
11-
- shell: bash -c "$RUNNER_TOOL_CACHE/Python/3.8.0/x64/python {0}"
12-
run: import sys ; print("Python {}.{}.{}".format(*sys.version_info))
13-
- shell: bash -c "$RUNNER_TOOL_CACHE/Python/3.8.0/x64/python {0}"
8+
- uses: actions/checkout@master
9+
- uses: actions/setup-python@master
10+
- name: update_directory_md
11+
shell: python
1412
run: |
1513
import os
1614
from typing import Iterator

0 commit comments

Comments
 (0)