Skip to content

Commit 1effc67

Browse files
committed
Update to actions/upload-artifact@v4 and actions/download-artifact@v4
1 parent 19005a6 commit 1effc67

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Build
3535
run: make build
3636
- name: Upload artifact
37-
uses: actions/upload-artifact@v3
37+
uses: actions/upload-artifact@v4
3838
with:
3939
name: build-${{ github.sha }}
4040
if-no-files-found: error

.github/workflows/_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
install_dependencies: 'false'
2828
- name: Download artifact
29-
uses: actions/download-artifact@v3
29+
uses: actions/download-artifact@v4
3030
with:
3131
name: ${{ inputs.artifact_name }}
3232
path: dist/

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
with:
111111
python-version: ${{ matrix.python }}
112112
- name: Download artifact
113-
uses: actions/download-artifact@v3
113+
uses: actions/download-artifact@v4
114114
with:
115115
name: ${{ needs.build.outputs.artifact_name }}
116116
path: .

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323
- name: Download artifact
24-
uses: actions/download-artifact@v3
24+
uses: actions/download-artifact@v4
2525
with:
2626
name: ${{ needs.build.outputs.artifact_name }}
2727
path: dist/

0 commit comments

Comments
 (0)