Skip to content

Commit 4bba7d5

Browse files
committed
Use actions/upload-artifact v4
v3 can't be used since January 30
1 parent 4097b7c commit 4bba7d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
# Collect Tests Result of failed tests
8585
- name: Collect Tests Result
8686
if: ${{ failure() }}
87-
uses: actions/upload-artifact@v3
87+
uses: actions/upload-artifact@v4
8888
with:
8989
name: tests-result
9090
path: ${{ github.workspace }}/build/reports/tests
@@ -109,7 +109,7 @@ jobs:
109109
# Collect Plugin Verifier Result
110110
- name: Collect Plugin Verifier Result
111111
if: ${{ always() }}
112-
uses: actions/upload-artifact@v3
112+
uses: actions/upload-artifact@v4
113113
with:
114114
name: pluginVerifier-result
115115
path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -127,7 +127,7 @@ jobs:
127127
128128
# Store already-built plugin as an artifact for downloading
129129
- name: Upload artifact
130-
uses: actions/upload-artifact@v3
130+
uses: actions/upload-artifact@v4
131131
with:
132132
name: ${{ steps.artifact.outputs.filename }}
133133
path: ./build/distributions/content/*/*

0 commit comments

Comments
 (0)