Skip to content

Commit 7f845f7

Browse files
renovate-botJohnVillalovos
authored andcommitted
chore(deps): update actions/setup-python action to v3
1 parent 425d161 commit 7f845f7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/docs.yml

+2-2
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@v2
27+
uses: actions/setup-python@v3
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@v2
47+
uses: actions/setup-python@v3
4848
with:
4949
python-version: "3.10"
5050
- name: Install dependencies

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@v3
34-
- uses: actions/setup-python@v2
34+
- uses: actions/setup-python@v3
3535
- run: pip install --upgrade tox
3636
- name: Run black code formatter (https://black.readthedocs.io/en/stable/)
3737
run: tox -e black -- --check

.github/workflows/pre_commit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- uses: actions/checkout@v3
33-
- uses: actions/setup-python@v2
33+
- uses: actions/setup-python@v3
3434
- run: pip install --upgrade -r requirements.txt -r requirements-lint.txt pre-commit
3535
- name: Run pre-commit install
3636
run: pre-commit install

.github/workflows/test.yml

+3-3
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@v2
50+
uses: actions/setup-python@v3
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@v2
68+
uses: actions/setup-python@v3
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@v2
89+
uses: actions/setup-python@v3
9090
with:
9191
python-version: "3.10"
9292
- name: Install dependencies

0 commit comments

Comments
 (0)