Skip to content

Commit

Permalink
ci: Switch to download-artifact v4
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
The-Compiler committed Dec 10, 2024
1 parent cdad310 commit 28214ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v3

- name: Download Package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Packages
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Download Package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Packages
path: dist
Expand Down

0 comments on commit 28214ea

Please sign in to comment.