Skip to content

Commit 342313b

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] <support@github.com>
1 parent 301a8a9 commit 342313b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: actions/setup-python@v5
8+
- uses: actions/setup-python@v6
99
with:
1010
python-version: '3.13'
1111
- name: Install tox

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
python-version: ['3.9', '3.14']
1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: actions/setup-python@v5
14+
- uses: actions/setup-python@v6
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
allow-prereleases: true

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
id: get_bioblend_python_version
131131
run: echo "bioblend_python_version=$(echo "${{ matrix.tox_env }}" | sed -e 's/^py\([3-9]\)\([0-9]\+\)/\1.\2/')" >> $GITHUB_OUTPUT
132132
- name: Set up Python for BioBlend
133-
uses: actions/setup-python@v5
133+
uses: actions/setup-python@v6
134134
with:
135135
python-version: ${{ steps.get_bioblend_python_version.outputs.bioblend_python_version }}
136136
allow-prereleases: true
@@ -139,7 +139,7 @@ jobs:
139139
python3 -m pip install --upgrade pip setuptools
140140
python3 -m pip install 'tox>=1.8.0'
141141
- name: Set up Python for Galaxy
142-
uses: actions/setup-python@v5
142+
uses: actions/setup-python@v6
143143
with:
144144
python-version: ${{ matrix.galaxy_python_version }}
145145
- name: Run tests

0 commit comments

Comments
 (0)