Skip to content

Commit 0181aeb

Browse files
chore(deps): Bump actions/setup-python from 4 to 5 (#620)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f680a9a commit 0181aeb

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: mkdir "$REPORTS_DIR"
3737
- name: Setup python ${{ env.PYTHON_VERISON }}
3838
# see https://github.com/actions/setup-python
39-
uses: actions/setup-python@v4
39+
uses: actions/setup-python@v5
4040
with:
4141
python-version: ${{ env.PYTHON_VERISON }}
4242
- name: Setup poetry ${{ env.POETRY_VERSION }}

.github/workflows/manual-release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@v4
2828
with:
2929
fetch-depth: 0
30-
- uses: actions/setup-python@v4
30+
- uses: actions/setup-python@v5
3131
with:
3232
python-version: ${{ env.PYTHON_VERISON }}
3333
- name: Install dependencies

.github/workflows/python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: actions/checkout@v4
4949
- name: Setup Python Environment
5050
# see https://github.com/actions/setup-python
51-
uses: actions/setup-python@v4
51+
uses: actions/setup-python@v5
5252
with:
5353
python-version: ${{ env.PYTHON_VERISON_DEFAULT }}
5454
architecture: 'x64'
@@ -84,7 +84,7 @@ jobs:
8484
uses: actions/checkout@v4
8585
- name: Setup Python Environment
8686
# see https://github.com/actions/setup-python
87-
uses: actions/setup-python@v4
87+
uses: actions/setup-python@v5
8888
with:
8989
python-version: ${{ matrix.python-version }}
9090
architecture: 'x64'
@@ -149,7 +149,7 @@ jobs:
149149
run: mkdir ${{ env.REPORTS_DIR }}
150150
- name: Setup Python Environment
151151
# see https://github.com/actions/setup-python
152-
uses: actions/setup-python@v4
152+
uses: actions/setup-python@v5
153153
with:
154154
python-version: ${{ matrix.python-version }}
155155
architecture: 'x64'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
fetch-depth: 0 # action `relekang/python-semantic-release` requires all git history
5757
- name: Setup python ${{ env.PYTHON_VERISON }}
5858
# see https://github.com/actions/setup-python
59-
uses: actions/setup-python@v4
59+
uses: actions/setup-python@v5
6060
with:
6161
python-version: ${{ env.PYTHON_VERISON }}
6262
- name: Setup poetry ${{ env.POETRY_VERSION }}

0 commit comments

Comments
 (0)