Skip to content

Commit 15290b4

Browse files
authored
Merge pull request #333 from pythonclub/copilot/update-github-actions-python35
Update GitHub Actions to Python 3.5 and latest action versions
2 parents 25ef23f + bdec8e0 commit 15290b4

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build-test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,19 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout do repositório
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v5
1919
with:
2020
submodules: recursive
2121

2222
- name: Configura python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v6
2424
with:
25-
python-version: "2.7"
25+
python-version: "3.5"
2626
cache: pip
2727

2828
- name: Instala dependências
2929
run: pip install -r requirements.txt
3030

3131
- name: Build do site
3232
run: make publish
33+

.github/workflows/github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Configura python
2626
uses: actions/setup-python@v6
2727
with:
28-
python-version: "2.7"
28+
python-version: "3.5"
2929
cache: pip
3030

3131
- name: Instala dependências

0 commit comments

Comments
 (0)