Skip to content

Commit a7ec1cf

Browse files
Bump the actions group with 4 updates
Bumps the actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact), [marocchino/sticky-pull-request-comment](https://github.com/marocchino/sticky-pull-request-comment) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). 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/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `marocchino/sticky-pull-request-comment` from 2.9.1 to 2.9.4 - [Release notes](https://github.com/marocchino/sticky-pull-request-comment/releases) - [Commits](marocchino/sticky-pull-request-comment@52423e0...7737449) Updates `astral-sh/setup-uv` from 6.4.3 to 6.6.1 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@e92bafb...557e51d) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: marocchino/sticky-pull-request-comment dependency-version: 2.9.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 6.6.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ccbfd9b commit a7ec1cf

File tree

3 files changed

+30
-30
lines changed

3 files changed

+30
-30
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757

5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060
with:
6161
persist-credentials: false
6262

@@ -155,15 +155,15 @@ jobs:
155155
if: ${{ always() && needs.tests.outputs.cov_uploaded != '' }}
156156

157157
steps:
158-
- uses: actions/checkout@v4
158+
- uses: actions/checkout@v5
159159
with:
160160
persist-credentials: false
161161
- name: Set up Python
162162
uses: actions/setup-python@v5
163163
with:
164164
python-version: "3"
165165
- name: Download coverage artifacts
166-
uses: actions/download-artifact@v4
166+
uses: actions/download-artifact@v5
167167
with:
168168
pattern: .coverage_*
169169
path: .
@@ -219,7 +219,7 @@ jobs:
219219
sed -i "1s|^\(!.*\)$|[\1]($run_url)|" code-coverage-results.md
220220
221221
- name: Add Coverage PR Comment
222-
uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.3
222+
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.3
223223
# Create PR comment when the branch is on the repo, otherwise we lack PR write permissions
224224
# -> need another workflow with access to secret token
225225
if: >-

.github/workflows/publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
with:
2828
persist-credentials: false
2929
- name: Set up Python
@@ -55,15 +55,15 @@ jobs:
5555
runs-on: ubuntu-latest
5656

5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959
with:
6060
persist-credentials: false
6161
- name: Set up Python
6262
uses: actions/setup-python@v5
6363
with:
6464
python-version: "3.x"
6565
- name: Download all the dists
66-
uses: actions/download-artifact@v4
66+
uses: actions/download-artifact@v5
6767
with:
6868
name: python-package-distributions
6969
path: dist/
@@ -84,15 +84,15 @@ jobs:
8484
runs-on: ubuntu-latest
8585

8686
steps:
87-
- uses: actions/checkout@v4
87+
- uses: actions/checkout@v5
8888
with:
8989
persist-credentials: false
9090
- name: Set up Python
9191
uses: actions/setup-python@v5
9292
with:
9393
python-version: "3.x"
9494
- name: Download all the dists
95-
uses: actions/download-artifact@v4
95+
uses: actions/download-artifact@v5
9696
with:
9797
name: python-package-distributions
9898
path: dist/
@@ -112,15 +112,15 @@ jobs:
112112
runs-on: ubuntu-latest
113113

114114
steps:
115-
- uses: actions/checkout@v4
115+
- uses: actions/checkout@v5
116116
with:
117117
persist-credentials: false
118118
- name: Set up Python
119119
uses: actions/setup-python@v5
120120
with:
121121
python-version: "3.x"
122122
- name: Download all the dists
123-
uses: actions/download-artifact@v4
123+
uses: actions/download-artifact@v5
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@v4
155+
uses: actions/download-artifact@v5
156156
with:
157157
name: python-package-distributions
158158
path: dist/

.github/workflows/third_party.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ jobs:
5151
timeout-minutes: 60
5252
steps:
5353
- name: Install the latest version of uv
54-
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
54+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
5555
with:
5656
python-version: ${{ matrix.python-version }}
5757
- name: Checkout pydantic
5858
run: git clone --depth=1 https://github.com/pydantic/pydantic.git || git clone --depth=1 https://github.com/pydantic/pydantic.git
5959
- name: Checkout typing_extensions
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v5
6161
with:
6262
path: typing-extensions-latest
6363
persist-credentials: false
@@ -84,13 +84,13 @@ jobs:
8484
timeout-minutes: 60
8585
steps:
8686
- name: Install the latest version of uv
87-
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
87+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
8888
with:
8989
python-version: ${{ matrix.python-version }}
9090
- name: Checkout typing_inspect
9191
run: git clone --depth=1 https://github.com/ilevkivskyi/typing_inspect.git || git clone --depth=1 https://github.com/ilevkivskyi/typing_inspect.git
9292
- name: Checkout typing_extensions
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v5
9494
with:
9595
path: typing-extensions-latest
9696
persist-credentials: false
@@ -119,13 +119,13 @@ jobs:
119119
timeout-minutes: 60
120120
steps:
121121
- name: Install the latest version of uv
122-
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
122+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
123123
with:
124124
python-version: ${{ matrix.python-version }}
125125
- name: Check out pycroscope
126126
run: git clone --depth=1 https://github.com/JelleZijlstra/pycroscope.git || git clone --depth=1 https://github.com/JelleZijlstra/pycroscope.git
127127
- name: Checkout typing_extensions
128-
uses: actions/checkout@v4
128+
uses: actions/checkout@v5
129129
with:
130130
path: typing-extensions-latest
131131
persist-credentials: false
@@ -154,13 +154,13 @@ jobs:
154154
timeout-minutes: 60
155155
steps:
156156
- name: Install the latest version of uv
157-
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
157+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
158158
with:
159159
python-version: ${{ matrix.python-version }}
160160
- name: Check out typeguard
161161
run: git clone --depth=1 https://github.com/agronholm/typeguard.git || git clone --depth=1 https://github.com/agronholm/typeguard.git
162162
- name: Checkout typing_extensions
163-
uses: actions/checkout@v4
163+
uses: actions/checkout@v5
164164
with:
165165
path: typing-extensions-latest
166166
persist-credentials: false
@@ -191,13 +191,13 @@ jobs:
191191
timeout-minutes: 60
192192
steps:
193193
- name: Install the latest version of uv
194-
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
194+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
195195
with:
196196
python-version: ${{ matrix.python-version }}
197197
- name: Check out typed-argument-parser
198198
run: git clone --depth=1 https://github.com/swansonk14/typed-argument-parser.git || git clone --depth=1 https://github.com/swansonk14/typed-argument-parser.git
199199
- name: Checkout typing_extensions
200-
uses: actions/checkout@v4
200+
uses: actions/checkout@v5
201201
with:
202202
path: typing-extensions-latest
203203
persist-credentials: false
@@ -233,13 +233,13 @@ jobs:
233233
timeout-minutes: 60
234234
steps:
235235
- name: Install the latest version of uv
236-
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
236+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
237237
with:
238238
python-version: ${{ matrix.python-version }}
239239
- name: Checkout mypy for stubtest and mypyc tests
240240
run: git clone --depth=1 https://github.com/python/mypy.git || git clone --depth=1 https://github.com/python/mypy.git
241241
- name: Checkout typing_extensions
242-
uses: actions/checkout@v4
242+
uses: actions/checkout@v5
243243
with:
244244
path: typing-extensions-latest
245245
persist-credentials: false
@@ -269,13 +269,13 @@ jobs:
269269
timeout-minutes: 60
270270
steps:
271271
- name: Install the latest version of uv
272-
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
272+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
273273
with:
274274
python-version: ${{ matrix.python-version }}
275275
- name: Checkout cattrs
276276
run: git clone --depth=1 https://github.com/python-attrs/cattrs.git || git clone --depth=1 https://github.com/python-attrs/cattrs.git
277277
- name: Checkout typing_extensions
278-
uses: actions/checkout@v4
278+
uses: actions/checkout@v5
279279
with:
280280
path: typing-extensions-latest
281281
persist-credentials: false
@@ -307,13 +307,13 @@ jobs:
307307
timeout-minutes: 60
308308
steps:
309309
- name: Install the latest version of uv
310-
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
310+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
311311
with:
312312
python-version: ${{ matrix.python-version }}
313313
- name: Checkout sqlalchemy
314314
run: git clone -b ${{ matrix.checkout-ref }} --depth=1 https://github.com/sqlalchemy/sqlalchemy.git || git clone -b ${{ matrix.checkout-ref }} --depth=1 https://github.com/sqlalchemy/sqlalchemy.git
315315
- name: Checkout typing_extensions
316-
uses: actions/checkout@v4
316+
uses: actions/checkout@v5
317317
with:
318318
path: typing-extensions-latest
319319
persist-credentials: false
@@ -338,13 +338,13 @@ jobs:
338338
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
339339
steps:
340340
- name: Install the latest version of uv
341-
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
341+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
342342
with:
343343
python-version: ${{ matrix.python-version }}
344344
- name: Checkout litestar
345345
run: git clone --depth=1 https://github.com/litestar-org/litestar.git || git clone --depth=1 https://github.com/litestar-org/litestar.git
346346
- name: Checkout typing_extensions
347-
uses: actions/checkout@v4
347+
uses: actions/checkout@v5
348348
with:
349349
path: typing-extensions-latest
350350
persist-credentials: false

0 commit comments

Comments
 (0)