Skip to content

Commit ebd5795

Browse files
authored
Merge pull request #2105 from python-gitlab/renovate/actions-setup-python-4.x
chore(deps): update actions/setup-python action to v4
2 parents 3c3f865 + eb14475 commit ebd5795

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v3
2626
- name: Set up Python
27-
uses: actions/setup-python@v3
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: "3.10"
3030
- name: Install dependencies
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@v3
4646
- name: Set up Python
47-
uses: actions/setup-python@v3
47+
uses: actions/setup-python@v4
4848
with:
4949
python-version: "3.10"
5050
- name: Install dependencies

.github/workflows/lint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
- uses: actions/checkout@v3
2626
with:
2727
fetch-depth: 0
28-
- uses: actions/setup-python@v3
28+
- uses: actions/setup-python@v4
29+
with:
30+
python-version: "3.10"
2931
- run: pip install --upgrade tox
3032
- name: Run commitizen (https://commitizen-tools.github.io/commitizen/)
3133
run: tox -e cz

.github/workflows/pre_commit.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- uses: actions/checkout@v3
33-
- uses: actions/setup-python@v3
33+
- uses: actions/setup-python@v4
34+
with:
35+
python-version: "3.10"
3436
- run: pip install --upgrade -r requirements.txt -r requirements-lint.txt pre-commit
3537
- name: Run pre-commit install
3638
run: pre-commit install

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848
- uses: actions/checkout@v3
4949
- name: Set up Python ${{ matrix.python.version }}
50-
uses: actions/setup-python@v3
50+
uses: actions/setup-python@v4
5151
with:
5252
python-version: ${{ matrix.python.version }}
5353
- name: Install dependencies
@@ -65,7 +65,7 @@ jobs:
6565
steps:
6666
- uses: actions/checkout@v3
6767
- name: Set up Python
68-
uses: actions/setup-python@v3
68+
uses: actions/setup-python@v4
6969
with:
7070
python-version: "3.10"
7171
- name: Install dependencies
@@ -86,7 +86,7 @@ jobs:
8686
steps:
8787
- uses: actions/checkout@v3
8888
- name: Set up Python ${{ matrix.python-version }}
89-
uses: actions/setup-python@v3
89+
uses: actions/setup-python@v4
9090
with:
9191
python-version: "3.10"
9292
- name: Install dependencies

0 commit comments

Comments
 (0)