Skip to content

Commit 28214ea

Browse files
committed
ci: Switch to download-artifact v4
See https://github.com/actions/upload-artifact?tab=readme-ov-file#v4---whats-new from what I can tell, we're not affected by the breaking changes. The v3 action will stop working on January 30th: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
1 parent cdad310 commit 28214ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v3
3131

3232
- name: Download Package
33-
uses: actions/download-artifact@v3
33+
uses: actions/download-artifact@v4
3434
with:
3535
name: Packages
3636
path: dist

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
python-version: ${{ matrix.python-version }}
4646

4747
- name: Download Package
48-
uses: actions/download-artifact@v3
48+
uses: actions/download-artifact@v4
4949
with:
5050
name: Packages
5151
path: dist

0 commit comments

Comments
 (0)