Skip to content

Commit 82c530d

Browse files
Bump actions/setup-python from 5.4.0 to 5.5.0 (#739)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.4.0 to 5.5.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5.4.0...v5.5.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 4a0d683 commit 82c530d

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
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
virtualenvs-create: true
3535
virtualenvs-in-project: true
36-
- uses: actions/setup-python@v5.4.0
36+
- uses: actions/setup-python@v5.5.0
3737
with:
3838
python-version: '3.10'
3939
cache: 'poetry'

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install poetry
1818
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
1919

20-
- uses: actions/setup-python@v5.4.0
20+
- uses: actions/setup-python@v5.5.0
2121
with:
2222
python-version: '3.10'
2323
cache: 'poetry'

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- uses: actions/checkout@v4.2.2
4444
- name: Install poetry
4545
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
46-
- uses: actions/setup-python@v5.4.0
46+
- uses: actions/setup-python@v5.5.0
4747
with:
4848
python-version: '3.10'
4949
cache: 'poetry'

.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.2.2
3030
- name: Install pip
3131
run: python3 -m pip install --upgrade pip
32-
- uses: actions/setup-python@v5.4.0
32+
- uses: actions/setup-python@v5.5.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.2.2
1616
- name: Install poetry
1717
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
18-
- uses: actions/setup-python@v5.4.0
18+
- uses: actions/setup-python@v5.5.0
1919
with:
2020
python-version: '3.10'
2121
- name: Build package

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v4.2.2
3434
- name: Install dependencies, run unit tests and coverage report
3535
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
36-
- uses: actions/setup-python@v5.4.0
36+
- uses: actions/setup-python@v5.5.0
3737
with:
3838
python-version: '3.10'
3939
cache: 'poetry'

0 commit comments

Comments
 (0)