Skip to content

Commit 78abb94

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

7 files changed

Lines changed: 26 additions & 21 deletions

File tree

.github/workflows/docs_test_action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout 🛎️
19-
uses: "actions/checkout@v4"
19+
uses: "actions/checkout@v6"
2020

2121
- name: Check for changed files
22-
uses: dorny/paths-filter@v2
22+
uses: dorny/paths-filter@v4
2323
id: changes
2424
with:
2525
list-files: "json"

.github/workflows/flake8.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: Checkout 🛎️
22-
uses: "actions/checkout@v4"
22+
uses: "actions/checkout@v6"
2323

2424
- name: Check for changed files
25-
uses: dorny/paths-filter@v2
25+
uses: dorny/paths-filter@v4
2626
id: changes
2727
with:
2828
list-files: "json"
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: Setup Python 🐍
3434
if: steps.changes.outputs.code == 'true'
35-
uses: "actions/setup-python@v5"
35+
uses: "actions/setup-python@v6"
3636
with:
3737
python-version: "3.9"
3838

.github/workflows/mypy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424

2525
steps:
2626
- name: Checkout 🛎️
27-
uses: "actions/checkout@v4"
27+
uses: "actions/checkout@v6"
2828

2929
- name: Check for changed files
30-
uses: dorny/paths-filter@v2
30+
uses: dorny/paths-filter@v4
3131
id: changes
3232
with:
3333
list-files: "json"
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Setup Python 🐍
3939
if: steps.changes.outputs.code == 'true'
40-
uses: "actions/setup-python@v5"
40+
uses: "actions/setup-python@v6"
4141
with:
4242
python-version: "3.9"
4343

.github/workflows/python_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737

3838
steps:
3939
- name: Checkout 🛎️
40-
uses: "actions/checkout@v4"
40+
uses: "actions/checkout@v6"
4141

4242
- name: Check for changed files
4343
if: startsWith(github.ref, 'refs/tags/') != true
44-
uses: dorny/paths-filter@v2
44+
uses: dorny/paths-filter@v4
4545
id: changes
4646
with:
4747
list-files: "json"
@@ -52,7 +52,7 @@ jobs:
5252
- name: Setup Python 🐍
5353
id: setup-python
5454
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
55-
uses: "actions/setup-python@v5"
55+
uses: "actions/setup-python@v6"
5656
with:
5757
python-version: "${{ matrix.config.python-version }}"
5858

.github/workflows/python_ci_linux.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040

4141
steps:
4242
- name: Checkout 🛎️
43-
uses: "actions/checkout@v4"
43+
uses: "actions/checkout@v6"
4444

4545
- name: Check for changed files
4646
if: startsWith(github.ref, 'refs/tags/') != true
47-
uses: dorny/paths-filter@v2
47+
uses: dorny/paths-filter@v4
4848
id: changes
4949
with:
5050
list-files: "json"
@@ -55,7 +55,7 @@ jobs:
5555
- name: Setup Python 🐍
5656
id: setup-python
5757
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
58-
uses: "actions/setup-python@v5"
58+
uses: "actions/setup-python@v6"
5959
with:
6060
python-version: "${{ matrix.config.python-version }}"
6161

@@ -89,10 +89,10 @@ jobs:
8989
runs-on: "ubuntu-22.04"
9090
steps:
9191
- name: Checkout 🛎️
92-
uses: "actions/checkout@v4"
92+
uses: "actions/checkout@v6"
9393

9494
- name: Setup Python 🐍
95-
uses: "actions/setup-python@v5"
95+
uses: "actions/setup-python@v6"
9696
with:
9797
python-version: 3.8
9898

@@ -142,11 +142,11 @@ jobs:
142142
runs-on: "ubuntu-22.04"
143143
steps:
144144
- name: Checkout 🛎️
145-
uses: "actions/checkout@v4"
145+
uses: "actions/checkout@v6"
146146
if: startsWith(github.ref, 'refs/tags/')
147147

148148
- name: Setup Python 🐍
149-
uses: "actions/setup-python@v5"
149+
uses: "actions/setup-python@v6"
150150
if: startsWith(github.ref, 'refs/tags/')
151151
with:
152152
python-version: 3.8

.github/workflows/python_ci_macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737

3838
steps:
3939
- name: Checkout 🛎️
40-
uses: "actions/checkout@v4"
40+
uses: "actions/checkout@v6"
4141

4242
- name: Check for changed files
4343
if: startsWith(github.ref, 'refs/tags/') != true
44-
uses: dorny/paths-filter@v2
44+
uses: dorny/paths-filter@v4
4545
id: changes
4646
with:
4747
list-files: "json"
@@ -52,7 +52,7 @@ jobs:
5252
- name: Setup Python 🐍
5353
id: setup-python
5454
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
55-
uses: "actions/setup-python@v5"
55+
uses: "actions/setup-python@v6"
5656
with:
5757
python-version: "${{ matrix.config.python-version }}"
5858

justfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,8 @@ bare-ignore:
2323

2424
lint: unused-imports incomplete-defs bare-ignore
2525
tox -n qa
26+
27+
uncomm:
28+
git status -uall --ignored
29+
30+
# Custom commands can be added below this comment

0 commit comments

Comments
 (0)