Skip to content

Commit e437615

Browse files
dependabot[bot]Luthaf
authored andcommitted
Bump the action-dependencies group with 2 updates
Bumps the action-dependencies group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). 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 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4c0e54d commit e437615

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build-wheels.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
CIBW_REPAIR_WHEEL_COMMAND_LINUX: |
122122
auditwheel repair --exclude libmetatensor.so --exclude libmetatensor_torch.so --exclude libtorch.so --exclude libtorch_cpu.so --exclude libc10.so -w {dest_dir} {wheel}
123123
124-
- uses: actions/upload-artifact@v4
124+
- uses: actions/upload-artifact@v5
125125
with:
126126
name: torch-single-version-wheel-${{ matrix.torch-version }}-${{ matrix.os }}-${{ matrix.arch }}
127127
path: ./wheelhouse/*.whl
@@ -152,7 +152,7 @@ jobs:
152152
- uses: actions/checkout@v5
153153

154154
- name: Download wheels
155-
uses: actions/download-artifact@v5
155+
uses: actions/download-artifact@v6
156156
with:
157157
pattern: torch-single-version-wheel-*-${{ matrix.os }}-${{ matrix.arch }}
158158
merge-multiple: false
@@ -194,7 +194,7 @@ jobs:
194194
- name: check wheels with twine
195195
run: twine check wheelhouse/*
196196

197-
- uses: actions/upload-artifact@v4
197+
- uses: actions/upload-artifact@v5
198198
with:
199199
name: torch-wheel-${{ matrix.os }}-${{ matrix.arch }}
200200
path: ./wheelhouse/*.whl
@@ -230,7 +230,7 @@ jobs:
230230
run: |
231231
./scripts/package-torch.sh dist/cxx/
232232
233-
- uses: actions/upload-artifact@v4
233+
- uses: actions/upload-artifact@v5
234234
with:
235235
name: others
236236
path: |
@@ -247,20 +247,20 @@ jobs:
247247
pull-requests: write
248248
steps:
249249
- name: Download metatomic-torch wheels
250-
uses: actions/download-artifact@v5
250+
uses: actions/download-artifact@v6
251251
with:
252252
path: wheels
253253
pattern: torch-wheel-*
254254
merge-multiple: true
255255

256256
- name: Download other wheels and sdists
257-
uses: actions/download-artifact@v5
257+
uses: actions/download-artifact@v6
258258
with:
259259
path: wheels
260260
name: others
261261

262262
- name: Re-upload a single wheels artifact
263-
uses: actions/upload-artifact@v4
263+
uses: actions/upload-artifact@v5
264264
with:
265265
name: wheels
266266
path: |

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: tox -e docs
4040

4141
- name: store documentation as github artifact to be downloaded by users
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v5
4343
with:
4444
name: docs
4545
path: docs/build/html/*

0 commit comments

Comments
 (0)