Skip to content

Commit 6533ee3

Browse files
Bump actions/setup-python from 5.1.1 to 5.2.0 (pyca#11511)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.1.1 to 5.2.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@39cd149...f677139) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b3298be commit 6533ee3

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Setup python
4545
id: setup-python
46-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
46+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
4747
with:
4848
python-version: "3.11"
4949

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
persist-credentials: false
6363
- name: Setup python
6464
id: setup-python
65-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
65+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
6666
with:
6767
python-version: ${{ matrix.PYTHON.VERSION }}
6868
cache: pip
@@ -242,7 +242,7 @@ jobs:
242242
key: ${{ matrix.PYTHON.NOXSESSION }}-${{ matrix.PYTHON.VERSION }}
243243

244244
- name: Setup python
245-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
245+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
246246
with:
247247
python-version: ${{ matrix.PYTHON.VERSION }}
248248
cache: pip
@@ -301,7 +301,7 @@ jobs:
301301
persist-credentials: false
302302
- name: Setup python
303303
id: setup-python
304-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
304+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
305305
with:
306306
python-version: ${{ matrix.PYTHON.VERSION }}
307307
architecture: ${{ matrix.WINDOWS.ARCH }}
@@ -377,7 +377,7 @@ jobs:
377377
uses: ./.github/actions/cache
378378
timeout-minutes: 2
379379
- name: Setup python
380-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
380+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
381381
with:
382382
python-version: ${{ matrix.PYTHON }}
383383
cache: pip
@@ -423,7 +423,7 @@ jobs:
423423
jobs: ${{ toJSON(needs) }}
424424
- name: Setup python
425425
if: ${{ always() }}
426-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
426+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
427427
with:
428428
python-version: '3.12'
429429
cache: pip

.github/workflows/linkcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
persist-credentials: false
2626
- name: Setup python
2727
id: setup-python
28-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
28+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
2929
with:
3030
python-version: 3.11
3131
- name: Cache rust and pip

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- run: echo "$EVENT_CONTEXT"
3636
env:
3737
EVENT_CONTEXT: ${{ toJson(github.event) }}
38-
- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
38+
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
3939
with:
4040
python-version: "3.11"
4141
- name: Get publish-requirements.txt from repository

.github/workflows/wheel-builder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ jobs:
219219
PYTHON_DOWNLOAD_URL: ${{ matrix.PYTHON.DOWNLOAD_URL }}
220220
if: contains(matrix.PYTHON.VERSION, 'pypy') == false
221221
- name: Setup pypy
222-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
222+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
223223
with:
224224
python-version: ${{ matrix.PYTHON.VERSION }}
225225
if: contains(matrix.PYTHON.VERSION, 'pypy')
@@ -315,7 +315,7 @@ jobs:
315315
name: cryptography-sdist
316316

317317
- name: Setup python
318-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
318+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
319319
with:
320320
python-version: ${{ matrix.PYTHON.VERSION }}
321321
architecture: ${{ matrix.WINDOWS.ARCH }}

0 commit comments

Comments
 (0)