Skip to content

Commit 311084f

Browse files
Bump actions/setup-python from 4 to 5 (#25)
1 parent 04af874 commit 311084f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout repository
1515
uses: actions/checkout@v4
1616
- name: Setup Python 3.11
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.11"
2020
- name: Install Pre-Commit
@@ -38,7 +38,7 @@ jobs:
3838
- name: Checkout repository
3939
uses: actions/checkout@v4
4040
- name: Setup Python ${{ matrix.python-version }}
41-
uses: actions/setup-python@v4
41+
uses: actions/setup-python@v5
4242
with:
4343
python-version: ${{ matrix.python-version }}
4444
- name: Install Poetry

.github/workflows/publish.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: macos-latest
1818
steps:
1919
- uses: actions/checkout@v4
20-
- uses: actions/setup-python@v4
20+
- uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ env.PYTHON_VERSION }}
2323
architecture: x64
@@ -59,7 +59,7 @@ jobs:
5959
target: [x64, x86]
6060
steps:
6161
- uses: actions/checkout@v4
62-
- uses: actions/setup-python@v4
62+
- uses: actions/setup-python@v5
6363
with:
6464
python-version: ${{ env.PYTHON_VERSION }}
6565
architecture: ${{ matrix.target }}
@@ -93,7 +93,7 @@ jobs:
9393
target: [x86_64, i686]
9494
steps:
9595
- uses: actions/checkout@v4
96-
- uses: actions/setup-python@v4
96+
- uses: actions/setup-python@v5
9797
with:
9898
python-version: ${{ env.PYTHON_VERSION }}
9999
architecture: x64
@@ -122,7 +122,7 @@ jobs:
122122
target: [aarch64, armv7, s390x, ppc64le, ppc64]
123123
steps:
124124
- uses: actions/checkout@v4
125-
- uses: actions/setup-python@v4
125+
- uses: actions/setup-python@v5
126126
with:
127127
python-version: ${{ env.PYTHON_VERSION }}
128128
- name: Build wheels
@@ -161,7 +161,7 @@ jobs:
161161
- i686-unknown-linux-musl
162162
steps:
163163
- uses: actions/checkout@v4
164-
- uses: actions/setup-python@v4
164+
- uses: actions/setup-python@v5
165165
with:
166166
python-version: ${{ env.PYTHON_VERSION }}
167167
architecture: x64
@@ -199,7 +199,7 @@ jobs:
199199
arch: armv7
200200
steps:
201201
- uses: actions/checkout@v4
202-
- uses: actions/setup-python@v4
202+
- uses: actions/setup-python@v5
203203
with:
204204
python-version: ${{ env.PYTHON_VERSION }}
205205
- name: Build wheels
@@ -239,7 +239,7 @@ jobs:
239239
- uses: actions/download-artifact@v3
240240
with:
241241
name: wheels
242-
- uses: actions/setup-python@v4
242+
- uses: actions/setup-python@v5
243243
- name: Publish to PyPi
244244
env:
245245
TWINE_USERNAME: __token__

0 commit comments

Comments
 (0)