Skip to content

Commit 26b516e

Browse files
Bump actions/setup-python from 5.0.0 to 5.1.0 (#611)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.0.0 to 5.1.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5.0.0...v5.1.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amrit Krishnan <amrit110@gmail.com>
1 parent 7348415 commit 26b516e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/code_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
virtualenvs-create: true
3434
virtualenvs-in-project: true
35-
- uses: actions/setup-python@v5.0.0
35+
- uses: actions/setup-python@v5.1.0
3636
with:
3737
python-version: '3.10'
3838
cache: 'poetry'

.github/workflows/docs_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
submodules: 'true'
2828
- name: Install dependencies, build docs and coverage report
2929
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
30-
- uses: actions/setup-python@v5.0.0
30+
- uses: actions/setup-python@v5.1.0
3131
with:
3232
python-version: '3.10'
3333
cache: 'poetry'

.github/workflows/docs_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
submodules: 'true'
3131
- name: Install dependencies, build docs and coverage report
3232
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
33-
- uses: actions/setup-python@v5.0.0
33+
- uses: actions/setup-python@v5.1.0
3434
with:
3535
python-version: '3.10'
3636
cache: 'poetry'

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/checkout@v4.1.1
4848
- name: Install poetry
4949
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
50-
- uses: actions/setup-python@v5.0.0
50+
- uses: actions/setup-python@v5.1.0
5151
with:
5252
python-version: '3.10'
5353
- name: Install dependencies and check code

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/checkout@v4.1.1
3030
- name: Install pip
3131
run: python3 -m pip install --upgrade pip
32-
- uses: actions/setup-python@v5.0.0
32+
- uses: actions/setup-python@v5.1.0
3333
with:
3434
python-version: '3.10'
3535
- name: Install package and test import

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4.1.1
1616
- name: Install poetry
1717
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
18-
- uses: actions/setup-python@v5.0.0
18+
- uses: actions/setup-python@v5.1.0
1919
with:
2020
python-version: '3.10'
2121
- name: Build package

0 commit comments

Comments
 (0)