Skip to content

Commit b801b93

Browse files
authored
Merge pull request #16 from PyThaiNLP/copilot/fix-action-run-issue
Fix deploy_docs workflow: Python 3.7 unavailable on GitHub Actions
2 parents 6da092b + 59f58e3 commit b801b93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy_docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
name: Build
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v1
13-
- name: Set up Python 3.7
14-
uses: actions/setup-python@v1
12+
- uses: actions/checkout@v4
13+
- name: Set up Python 3.8
14+
uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.7
16+
python-version: 3.8
1717
- name: Install dependencies
1818
run: |
1919
sudo apt install pandoc

0 commit comments

Comments
 (0)