Skip to content

Commit 19e2e12

Browse files
Chore(deps): Bump the actions-infrastructure group across 1 directory with 4 updates
Bumps the actions-infrastructure group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `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/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8234ec3 commit 19e2e12

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Codespell
1919
uses: codespell-project/actions-codespell@v2

.github/workflows/tests.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
build:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
with:
3535
fetch-depth: 0
3636
- name: Install the latest version of uv
3737
uses: astral-sh/setup-uv@v6
3838
- run: uv build
3939
- run: uvx twine check dist/*
40-
- uses: actions/upload-artifact@v4
40+
- uses: actions/upload-artifact@v5
4141
with:
4242
name: dist
4343
path: dist/
@@ -49,11 +49,11 @@ jobs:
4949
matrix:
5050
package: ["wheel", "sdist"]
5151
steps:
52-
- uses: actions/download-artifact@v4
52+
- uses: actions/download-artifact@v6
5353
with:
5454
name: dist
5555
path: dist/
56-
- uses: actions/setup-python@v5
56+
- uses: actions/setup-python@v6
5757
with:
5858
python-version: 3
5959
- name: Display Python version
@@ -100,11 +100,11 @@ jobs:
100100
DEPENDS: ${{ matrix.dependencies }}
101101

102102
steps:
103-
- uses: actions/checkout@v4
103+
- uses: actions/checkout@v5
104104
- name: Install the latest version of uv
105105
uses: astral-sh/setup-uv@v6
106106
- name: Set up Python ${{ matrix.python-version }}
107-
uses: actions/setup-python@v5
107+
uses: actions/setup-python@v6
108108
with:
109109
python-version: ${{ matrix.python-version }}
110110
- name: Display Python version
@@ -121,7 +121,7 @@ jobs:
121121
token: ${{ secrets.CODECOV_TOKEN }}
122122
if: ${{ always() }}
123123
- name: Upload pytest test results
124-
uses: actions/upload-artifact@v4
124+
uses: actions/upload-artifact@v5
125125
with:
126126
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.deb-depends }}
127127
path: test-results.xml
@@ -133,7 +133,7 @@ jobs:
133133
needs: [test, test-package]
134134
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
135135
steps:
136-
- uses: actions/download-artifact@v4
136+
- uses: actions/download-artifact@v6
137137
with:
138138
name: dist
139139
path: dist/
@@ -150,7 +150,7 @@ jobs:
150150
check: ['specs', 'style']
151151

152152
steps:
153-
- uses: actions/checkout@v4
153+
- uses: actions/checkout@v5
154154
- name: Install the latest version of uv
155155
uses: astral-sh/setup-uv@v6
156156
- name: Show tox config

0 commit comments

Comments
 (0)