Skip to content

Commit ced1e9a

Browse files
committed
Fix GitHub Action not finding Python
1 parent 07d3d59 commit ced1e9a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/action.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v3
1111
- name: Set up Python
12-
uses: actions/setup-python@v4
12+
uses: actions/setup-python@v3
1313
with:
14-
python-version: 3.6.9
14+
python-version: "3.x"
15+
env:
16+
AGENT_TOOLSDIRECTORY: /opt/hostedtoolache
1517
- name: Install dependencies
1618
run: |
1719
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)