Skip to content

Commit af0db99

Browse files
Updated files with 'repo_helper'. (#69)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 568ac7d commit af0db99

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/flake8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout 🛎️
23-
uses: "actions/checkout@v2"
23+
uses: "actions/checkout@v3"
2424

2525
- name: Check for changed files
2626
uses: dorny/paths-filter@v2
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Setup Python 🐍
3535
if: steps.changes.outputs.code == 'true'
36-
uses: "actions/setup-python@v2"
36+
uses: "actions/setup-python@v4"
3737
with:
3838
python-version: "3.8"
3939

.github/workflows/mypy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout 🛎️
28-
uses: "actions/checkout@v2"
28+
uses: "actions/checkout@v3"
2929

3030
- name: Check for changed files
3131
uses: dorny/paths-filter@v2
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Setup Python 🐍
4040
if: steps.changes.outputs.code == 'true'
41-
uses: "actions/setup-python@v2"
41+
uses: "actions/setup-python@v4"
4242
with:
4343
python-version: "3.8"
4444

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout 🛎️
38-
uses: "actions/checkout@v2"
38+
uses: "actions/checkout@v3"
3939

4040
- name: Check for changed files
4141
if: startsWith(github.ref, 'refs/tags/') != true
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup Python 🐍
5151
id: setup-python
5252
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
53-
uses: "actions/setup-python@v2"
53+
uses: "actions/setup-python@v4"
5454
with:
5555
python-version: "${{ matrix.config.python-version }}"
5656

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout 🛎️
39-
uses: "actions/checkout@v2"
39+
uses: "actions/checkout@v3"
4040

4141
- name: Check for changed files
4242
if: startsWith(github.ref, 'refs/tags/') != true
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Python 🐍
5252
id: setup-python
5353
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
54-
uses: "actions/setup-python@v2"
54+
uses: "actions/setup-python@v4"
5555
with:
5656
python-version: "${{ matrix.config.python-version }}"
5757

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout 🛎️
38-
uses: "actions/checkout@v2"
38+
uses: "actions/checkout@v3"
3939

4040
- name: Check for changed files
4141
if: startsWith(github.ref, 'refs/tags/') != true
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup Python 🐍
5151
id: setup-python
5252
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
53-
uses: "actions/setup-python@v2"
53+
uses: "actions/setup-python@v4"
5454
with:
5555
python-version: "${{ matrix.config.python-version }}"
5656

0 commit comments

Comments
 (0)