Skip to content

Commit 9e90532

Browse files
Bump the actions group with 4 updates (#748)
Bumps the actions group with 4 updates: [codecov/codecov-action](https://github.com/codecov/codecov-action), [actions/github-script](https://github.com/actions/github-script), [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `codecov/codecov-action` from 5.5.2 to 6.0.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@671740a...57e3a13) Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) Updates `pypa/gh-action-pypi-publish` from 1.13.0 to 1.14.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@ed0c539...cef2210) Updates `astral-sh/setup-uv` from 7.1.4 to 8.1.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@1e862df...0880764) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
1 parent 2f06414 commit 9e90532

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
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@671740ac38dd9b0130fbe1cec585b89eea48d3de
96+
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2
9797
if: >-
9898
github.repository == 'python/typing_extensions'
9999
&& (github.event_name == 'push' || github.event_name == 'pull_request')
@@ -122,7 +122,7 @@ jobs:
122122
issues: write
123123

124124
steps:
125-
- uses: actions/github-script@v8
125+
- uses: actions/github-script@v9
126126
with:
127127
github-token: ${{ secrets.GITHUB_TOKEN }}
128128
script: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,4 +159,4 @@ jobs:
159159
- name: Ensure exactly one sdist and one wheel have been downloaded
160160
run: test "$(find dist/*.tar.gz | wc -l | xargs)" = 1 && test "$(find dist/*.whl | wc -l | xargs)" = 1
161161
- name: Publish distribution to PyPI
162-
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e
162+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b

.github/workflows/third_party.yml

Lines changed: 10 additions & 10 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@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
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@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
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@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
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@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
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@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
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@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
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@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
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@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
314314
with:
315315
python-version: ${{ matrix.python-version }}
316316
- name: Checkout sqlalchemy
@@ -342,7 +342,7 @@ jobs:
342342
python-version: [ "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@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
346346
with:
347347
python-version: ${{ matrix.python-version }}
348348
- name: Checkout litestar
@@ -405,7 +405,7 @@ jobs:
405405
issues: write
406406

407407
steps:
408-
- uses: actions/github-script@v8
408+
- uses: actions/github-script@v9
409409
with:
410410
github-token: ${{ secrets.GITHUB_TOKEN }}
411411
script: |

0 commit comments

Comments
 (0)