Skip to content

Commit e4a608e

Browse files
chore(gh-actions-deps): update actions/setup-python action to v5.4.0 in all dependant reusable workflows (#357)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent ee92b44 commit e4a608e

7 files changed

+10
-10
lines changed

.github/workflows/_reusable-check-api-for-breaking-changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Python
21-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
21+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
2222
with:
2323
python-version-file: pyproject.toml
2424
- name: Install package to check

.github/workflows/_reusable-package-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
name: Packages
6161
path: dist
6262
- name: Set up Python
63-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
63+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
6464
with:
6565
python-version: ${{ matrix.python-version }}
6666
check-latest: true

.github/workflows/_reusable-package-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ jobs:
291291
- ' --index-url=https://test.pypi.org/simple/ --extra-index-url=https://pypi.org/simple'
292292
steps:
293293
- name: Set up Python
294-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
294+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
295295
with:
296296
python-version: ${{ matrix.python-version }}
297297
check-latest: true

.github/workflows/_reusable-package-testpypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
steps:
7171
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7272
- name: Set up Python
73-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
73+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
7474
with:
7575
python-version-file: pyproject.toml
7676
- name: Test installing from test.pypi.org

.github/workflows/_reusable-sbom-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15-
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
15+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
1616
with:
1717
python-version-file: pyproject.toml
1818
- name: Create lockfile and install dependencies

.github/workflows/_reusable-test-code.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ jobs:
5050
check-latest: true
5151
- name: Set up Python (version)
5252
if: ${{ matrix.python-version != 'pyproject.toml' }}
53-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
53+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656
check-latest: true
5757
- name: Set up Python (pyproject.toml)
5858
if: ${{ matrix.python-version == 'pyproject.toml' }}
59-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
59+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
6060
with:
6161
python-version-file: ${{ matrix.python-version }}
6262
check-latest: true
@@ -95,7 +95,7 @@ jobs:
9595
node-version: lts/*
9696
check-latest: true
9797
- name: Set up Python
98-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
98+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
9999
with:
100100
python-version-file: pyproject.toml
101101
- name: Install tox

.github/workflows/_reusable-test-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
sudo apt install --no-install-recommends --assume-yes graphviz
3939
- name: Set up Python (version)
4040
if: ${{ inputs.python-version != 'pyproject.toml' }}
41-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
41+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
4242
with:
4343
python-version: ${{ inputs.python-version }}
4444
check-latest: true
4545
- name: Set up Python (pyproject.toml)
4646
if: ${{ inputs.python-version == 'pyproject.toml' }}
47-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
47+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
4848
with:
4949
python-version-file: ${{ inputs.python-version }}
5050
check-latest: true

0 commit comments

Comments
 (0)