Skip to content

Commit 16f013a

Browse files
authored
Merge pull request #334 from pythonclub/copilot/update-github-actions-ubuntu-20-04-python-3-5-10
Pin GitHub Actions to ubuntu-20.04 and Python 3.5.10
2 parents 15290b4 + 2dc406e commit 16f013a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
build:
1414
name: Build
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-20.04
1616
steps:
1717
- name: Checkout do repositório
1818
uses: actions/checkout@v5
@@ -22,7 +22,7 @@ jobs:
2222
- name: Configura python
2323
uses: actions/setup-python@v6
2424
with:
25-
python-version: "3.5"
25+
python-version: '3.5.10'
2626
cache: pip
2727

2828
- name: Instala dependências

.github/workflows/github-pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515
jobs:
1616
build:
1717
name: Build
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-20.04
1919
steps:
2020
- name: Checkout do repositório
2121
uses: actions/checkout@v5
@@ -25,7 +25,7 @@ jobs:
2525
- name: Configura python
2626
uses: actions/setup-python@v6
2727
with:
28-
python-version: "3.5"
28+
python-version: '3.5.10'
2929
cache: pip
3030

3131
- name: Instala dependências
@@ -45,7 +45,7 @@ jobs:
4545
permissions:
4646
pages: write
4747
id-token: write
48-
runs-on: ubuntu-latest
48+
runs-on: ubuntu-20.04
4949
environment:
5050
name: github-pages
5151
url: ${{ steps.deployment.outputs.page_url }}

0 commit comments

Comments
 (0)