Skip to content

Commit b768f49

Browse files
authored
Merge pull request #105 from remotemobprogramming/dependabot/github_actions/actions/upload-artifact-4
Bump actions/upload-artifact from 3 to 4
2 parents f23d9b2 + 01acb05 commit b768f49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,14 @@ jobs:
9191
# Collect Tests Result of failed tests
9292
- name: Collect Tests Result
9393
if: ${{ failure() }}
94-
uses: actions/upload-artifact@v3
94+
uses: actions/upload-artifact@v4
9595
with:
9696
name: tests-result
9797
path: ${{ github.workspace }}/build/reports/tests
9898

9999
# Collect code coverage
100100
- name: Collect code coverage
101-
uses: actions/upload-artifact@v3
101+
uses: actions/upload-artifact@v4
102102
with:
103103
name: code-coverage
104104
path: ${{ github.workspace }}/build/reports/jacoco/test/html
@@ -135,7 +135,7 @@ jobs:
135135
# Collect Plugin Verifier Result
136136
- name: Collect Plugin Verifier Result
137137
if: ${{ always() }}
138-
uses: actions/upload-artifact@v3
138+
uses: actions/upload-artifact@v4
139139
with:
140140
name: pluginVerifier-result
141141
path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -153,7 +153,7 @@ jobs:
153153
154154
# Store already-built plugin as an artifact for downloading
155155
- name: Upload artifact
156-
uses: actions/upload-artifact@v3
156+
uses: actions/upload-artifact@v4
157157
with:
158158
name: ${{ steps.artifact.outputs.filename }}
159159
path: ./build/distributions/content/*/*

0 commit comments

Comments
 (0)