Skip to content

Commit e28cdc3

Browse files
Bump actions/setup-python from 5 to 6 (#42)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Winston H. <56998716+winstxnhdw@users.noreply.github.com>
1 parent 55e801c commit e28cdc3

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@v5
17+
uses: actions/setup-python@v6
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@v5
41+
uses: actions/setup-python@v6
4242
with:
4343
python-version: ${{ matrix.python-version }}
4444
- name: Install uv

.github/workflows/publish.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: macos-latest
2020
steps:
2121
- uses: actions/checkout@v4
22-
- uses: actions/setup-python@v5
22+
- uses: actions/setup-python@v6
2323
with:
2424
python-version: ${{ env.PYTHON_VERSION }}
2525
architecture: x64
@@ -61,7 +61,7 @@ jobs:
6161
target: [x64, x86]
6262
steps:
6363
- uses: actions/checkout@v4
64-
- uses: actions/setup-python@v5
64+
- uses: actions/setup-python@v6
6565
with:
6666
python-version: ${{ env.PYTHON_VERSION }}
6767
architecture: ${{ matrix.target }}
@@ -95,7 +95,7 @@ jobs:
9595
target: [x86_64, i686]
9696
steps:
9797
- uses: actions/checkout@v4
98-
- uses: actions/setup-python@v5
98+
- uses: actions/setup-python@v6
9999
with:
100100
python-version: ${{ env.PYTHON_VERSION }}
101101
architecture: x64
@@ -124,7 +124,7 @@ jobs:
124124
target: [aarch64, armv7, s390x, ppc64le, ppc64]
125125
steps:
126126
- uses: actions/checkout@v4
127-
- uses: actions/setup-python@v5
127+
- uses: actions/setup-python@v6
128128
with:
129129
python-version: ${{ env.PYTHON_VERSION }}
130130
- name: Build wheels
@@ -163,7 +163,7 @@ jobs:
163163
- i686-unknown-linux-musl
164164
steps:
165165
- uses: actions/checkout@v4
166-
- uses: actions/setup-python@v5
166+
- uses: actions/setup-python@v6
167167
with:
168168
python-version: ${{ env.PYTHON_VERSION }}
169169
architecture: x64
@@ -201,7 +201,7 @@ jobs:
201201
arch: armv7
202202
steps:
203203
- uses: actions/checkout@v4
204-
- uses: actions/setup-python@v5
204+
- uses: actions/setup-python@v6
205205
with:
206206
python-version: ${{ env.PYTHON_VERSION }}
207207
- name: Build wheels
@@ -241,7 +241,7 @@ jobs:
241241
- uses: actions/download-artifact@v7
242242
with:
243243
name: wheels
244-
- uses: actions/setup-python@v5
244+
- uses: actions/setup-python@v6
245245
- name: Publish to PyPi
246246
env:
247247
TWINE_USERNAME: __token__

0 commit comments

Comments
 (0)