Skip to content

Commit 97a6179

Browse files
authored
Merge pull request #112 from bgilbert/actions
Bump artifact GitHub Actions, Python, and pre-commit
2 parents 69bd64d + 1b0a771 commit 97a6179

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/retile.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
run: |
7575
pip install -t ${GITHUB_WORKSPACE}/install/python .
7676
- name: Upload build
77-
uses: actions/upload-artifact@v4
77+
uses: actions/upload-artifact@v5
7878
with:
7979
name: build
8080
path: install
@@ -92,7 +92,7 @@ jobs:
9292
- name: Install dependencies
9393
run: dnf install -y ${RUNTIME_DEPS}
9494
- name: Download build
95-
uses: actions/download-artifact@v5
95+
uses: actions/download-artifact@v6
9696
with:
9797
name: build
9898
path: install
@@ -109,7 +109,7 @@ jobs:
109109
matrix
110110
echo "slide-matrix=$(cat matrix)" >> $GITHUB_OUTPUT
111111
- name: Upload context
112-
uses: actions/upload-artifact@v4
112+
uses: actions/upload-artifact@v5
113113
with:
114114
name: context
115115
path: context
@@ -132,12 +132,12 @@ jobs:
132132
- name: Install dependencies
133133
run: dnf install -y ${RUNTIME_DEPS}
134134
- name: Download build
135-
uses: actions/download-artifact@v5
135+
uses: actions/download-artifact@v6
136136
with:
137137
name: build
138138
path: install
139139
- name: Download context
140-
uses: actions/download-artifact@v5
140+
uses: actions/download-artifact@v6
141141
with:
142142
name: context
143143
- name: Tile slide
@@ -152,7 +152,7 @@ jobs:
152152
${GITHUB_WORKSPACE}/summary
153153
echo "ARTIFACT_NAME=summary-$(echo "${{ matrix.slide }}" | tr -c "a-zA-Z0-9\n" _)" >> $GITHUB_ENV
154154
- name: Upload summary
155-
uses: actions/upload-artifact@v4
155+
uses: actions/upload-artifact@v5
156156
with:
157157
name: ${{ env.ARTIFACT_NAME }}
158158
path: summary
@@ -170,16 +170,16 @@ jobs:
170170
- name: Install dependencies
171171
run: dnf install -y ${RUNTIME_DEPS}
172172
- name: Download build
173-
uses: actions/download-artifact@v5
173+
uses: actions/download-artifact@v6
174174
with:
175175
name: build
176176
path: install
177177
- name: Download context
178-
uses: actions/download-artifact@v5
178+
uses: actions/download-artifact@v6
179179
with:
180180
name: context
181181
- name: Download summaries
182-
uses: actions/download-artifact@v5
182+
uses: actions/download-artifact@v6
183183
with:
184184
pattern: "summary-*"
185185
path: summary

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v6
2121
with:
22-
python-version: '3.13'
22+
python-version: 3.14
2323
- name: Install dependencies
2424
run: python -m pip install pre-commit
2525
- name: Cache pre-commit environments

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ repos:
1515
- id: trailing-whitespace
1616

1717
- repo: https://github.com/asottile/pyupgrade
18-
rev: v3.20.0
18+
rev: v3.21.0
1919
hooks:
2020
- id: pyupgrade
2121
name: Modernize Python code
2222
args: ["--py313-plus"]
2323

2424
- repo: https://github.com/PyCQA/isort
25-
rev: 6.0.1
25+
rev: 7.0.0
2626
hooks:
2727
- id: isort
2828
name: Reorder Python imports with isort
2929

3030
- repo: https://github.com/psf/black
31-
rev: 25.1.0
31+
rev: 25.9.0
3232
hooks:
3333
- id: black
3434
name: Format Python code with black
@@ -47,7 +47,7 @@ repos:
4747
additional_dependencies: [flake8-bugbear, Flake8-pyproject]
4848

4949
- repo: https://github.com/pre-commit/mirrors-mypy
50-
rev: v1.17.1
50+
rev: v1.18.2
5151
hooks:
5252
- id: mypy
5353
name: Check Python types

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.black]
22
line-length = 79
33
skip-string-normalization = true
4-
target-version = ["py313"]
4+
target-version = ["py313", "py314"]
55

66
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
77
[tool.codespell]

0 commit comments

Comments
 (0)