Skip to content

Commit 00fee05

Browse files
chore: bump actions/upload-artifact from 2 to 3
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 72abda5 commit 00fee05

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
@@ -71,7 +71,7 @@ jobs:
7171
# Collect Tests Result of failed tests
7272
- name: Collect Tests Result
7373
if: ${{ failure() }}
74-
uses: actions/upload-artifact@v2
74+
uses: actions/upload-artifact@v3
7575
with:
7676
name: tests-result
7777
path: ${{ github.workspace }}/build/reports/tests
@@ -90,7 +90,7 @@ jobs:
9090
# Collect Plugin Verifier Result
9191
- name: Collect Plugin Verifier Result
9292
if: ${{ always() }}
93-
uses: actions/upload-artifact@v2
93+
uses: actions/upload-artifact@v3
9494
with:
9595
name: pluginVerifier-result
9696
path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -106,7 +106,7 @@ jobs:
106106
echo "::set-output name=filename::${FILENAME:0:-4}"
107107
# Store already-built plugin as an artifact for downloading
108108
- name: Upload artifact
109-
uses: actions/upload-artifact@v2.2.4
109+
uses: actions/upload-artifact@v3
110110
with:
111111
name: ${{ steps.artifact.outputs.filename }}
112112
path: ./build/distributions/content/*/*

0 commit comments

Comments
 (0)