Skip to content

Commit c0448e5

Browse files
Bump actions/setup-python from 5 to 6
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent aab2397 commit c0448e5

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
fetch-depth: 0
2424
- name: Set up Python
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: '3.10'
2828
- name: Install graphviz

.github/workflows/check-style.yml

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

1212
steps:
1313
- name: Set up Python 3.10
14-
uses: actions/setup-python@v5
14+
uses: actions/setup-python@v6
1515
with:
1616
python-version: '3.10'
1717
- name: Check out the target commit

.github/workflows/publish-on-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Check out the release commit
1414
uses: actions/checkout@v6
1515
- name: Set up Python
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: '3.10'
1919
- name: Install Python packages needed for build and upload

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
sudo apt-get install libxcb-shape0
3535
if: matrix.os == 'ubuntu-latest'
3636
- name: Set up Python ${{ matrix.python-version }}
37-
uses: actions/setup-python@v5
37+
uses: actions/setup-python@v6
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040
- name: Install dependencies and local packages
@@ -70,7 +70,7 @@ jobs:
7070
sudo apt-get install libsdl2-2.0-0
7171
if: matrix.os == 'ubuntu-latest'
7272
- name: Set up Python ${{ matrix.python-version }}
73-
uses: actions/setup-python@v5
73+
uses: actions/setup-python@v6
7474
with:
7575
python-version: ${{ matrix.python-version }}
7676
- name: Install dependencies and local packages

.github/workflows/test-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
sudo apt-get update
1616
sudo apt-get install graphviz
1717
- name: Set up Python 3.10
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: '3.10'
2121
- name: Check out the target commit

.github/workflows/test-from-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo apt-get install libxcb-shape0
3131
if: matrix.os == 'ubuntu-latest'
3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v5
33+
uses: actions/setup-python@v6
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install package and test dependencies from PyPI sdist (with PySide6)
@@ -75,7 +75,7 @@ jobs:
7575
sudo apt-get install libxcb-shape0
7676
if: matrix.os == 'ubuntu-latest'
7777
- name: Set up Python ${{ matrix.python-version }}
78-
uses: actions/setup-python@v5
78+
uses: actions/setup-python@v6
7979
with:
8080
python-version: ${{ matrix.python-version }}
8181
- name: Install package and test dependencies from PyPI wheel (with PySide6)

.github/workflows/weekly-scheduled-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Check out the target commit
2323
uses: actions/checkout@v6
2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
- name: Install dependencies and local packages
@@ -59,7 +59,7 @@ jobs:
5959
sudo apt-get install libxcb-shape0
6060
if: matrix.os == 'ubuntu-latest'
6161
- name: Set up Python ${{ matrix.python-version }}
62-
uses: actions/setup-python@v5
62+
uses: actions/setup-python@v6
6363
with:
6464
python-version: ${{ matrix.python-version }}
6565
- name: Install dependencies and local packages

0 commit comments

Comments
 (0)