Skip to content

Commit 95974f3

Browse files
Bump the actions group with 4 updates
Bumps the actions group with 4 updates: [codecov/codecov-action](https://github.com/codecov/codecov-action), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `codecov/codecov-action` from 5.5.1 to 5.5.2 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@5a10915...671740a) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) Updates `astral-sh/setup-uv` from 7.1.4 to 7.1.6 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@1e862df...681c641) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 7.1.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9cb611b commit 95974f3

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
python -c 'import typing_extensions; import test.__main__' test_typing -v
9494
9595
- name: Upload coverage reports to Codecov
96-
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
96+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de
9797
if: ${{ (github.event_name == 'push' || github.event_name == 'pull_request') }}
9898
with:
9999
token: ${{ secrets.CODECOV_ORG_TOKEN }}

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Build a binary wheel and a source tarball
4444
run: python -m build
4545
- name: Store the distribution packages
46-
uses: actions/upload-artifact@v5
46+
uses: actions/upload-artifact@v6
4747
with:
4848
name: python-package-distributions
4949
path: dist/
@@ -63,7 +63,7 @@ jobs:
6363
with:
6464
python-version: "3.x"
6565
- name: Download all the dists
66-
uses: actions/download-artifact@v6
66+
uses: actions/download-artifact@v7
6767
with:
6868
name: python-package-distributions
6969
path: dist/
@@ -92,7 +92,7 @@ jobs:
9292
with:
9393
python-version: "3.x"
9494
- name: Download all the dists
95-
uses: actions/download-artifact@v6
95+
uses: actions/download-artifact@v7
9696
with:
9797
name: python-package-distributions
9898
path: dist/
@@ -120,7 +120,7 @@ jobs:
120120
with:
121121
python-version: "3.x"
122122
- name: Download all the dists
123-
uses: actions/download-artifact@v6
123+
uses: actions/download-artifact@v7
124124
with:
125125
name: python-package-distributions
126126
path: dist/
@@ -152,7 +152,7 @@ jobs:
152152

153153
steps:
154154
- name: Download all the dists
155-
uses: actions/download-artifact@v6
155+
uses: actions/download-artifact@v7
156156
with:
157157
name: python-package-distributions
158158
path: dist/

.github/workflows/third_party.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
timeout-minutes: 60
5353
steps:
5454
- name: Install the latest version of uv
55-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
55+
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
5656
with:
5757
python-version: ${{ matrix.python-version }}
5858
- name: Checkout pydantic
@@ -85,7 +85,7 @@ jobs:
8585
timeout-minutes: 60
8686
steps:
8787
- name: Install the latest version of uv
88-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
88+
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
8989
with:
9090
python-version: ${{ matrix.python-version }}
9191
- name: Checkout typing_inspect
@@ -120,7 +120,7 @@ jobs:
120120
timeout-minutes: 60
121121
steps:
122122
- name: Install the latest version of uv
123-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
123+
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
124124
with:
125125
python-version: ${{ matrix.python-version }}
126126
- name: Check out pycroscope
@@ -155,7 +155,7 @@ jobs:
155155
timeout-minutes: 60
156156
steps:
157157
- name: Install the latest version of uv
158-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
158+
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
159159
with:
160160
python-version: ${{ matrix.python-version }}
161161
- name: Check out typeguard
@@ -193,7 +193,7 @@ jobs:
193193
timeout-minutes: 60
194194
steps:
195195
- name: Install the latest version of uv
196-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
196+
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
197197
with:
198198
python-version: ${{ matrix.python-version }}
199199
- name: Check out typed-argument-parser
@@ -236,7 +236,7 @@ jobs:
236236
timeout-minutes: 60
237237
steps:
238238
- name: Install the latest version of uv
239-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
239+
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
240240
with:
241241
python-version: ${{ matrix.python-version }}
242242
- name: Checkout mypy for stubtest and mypyc tests
@@ -272,7 +272,7 @@ jobs:
272272
timeout-minutes: 60
273273
steps:
274274
- name: Install the latest version of uv
275-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
275+
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
276276
with:
277277
python-version: ${{ matrix.python-version }}
278278
- name: Checkout cattrs
@@ -310,7 +310,7 @@ jobs:
310310
timeout-minutes: 60
311311
steps:
312312
- name: Install the latest version of uv
313-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
313+
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
314314
with:
315315
python-version: ${{ matrix.python-version }}
316316
- name: Checkout sqlalchemy
@@ -342,7 +342,7 @@ jobs:
342342
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
343343
steps:
344344
- name: Install the latest version of uv
345-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
345+
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
346346
with:
347347
python-version: ${{ matrix.python-version }}
348348
- name: Checkout litestar

0 commit comments

Comments
 (0)