Skip to content

Commit cb02ab7

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 86b5c2c commit cb02ab7

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
@@ -92,7 +92,7 @@ jobs:
9292
# # Collect Plugin Verifier Result
9393
# - name: Collect Plugin Verifier Result
9494
# if: ${{ always() }}
95-
# uses: actions/upload-artifact@v2
95+
# uses: actions/upload-artifact@v3
9696
# with:
9797
# name: pluginVerifier-result
9898
# path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -108,7 +108,7 @@ jobs:
108108
echo "::set-output name=filename::${FILENAME:0:-4}"
109109
# Store already-built plugin as an artifact for downloading
110110
- name: Upload artifact
111-
uses: actions/upload-artifact@v2.2.4
111+
uses: actions/upload-artifact@v3
112112
with:
113113
name: ${{ steps.artifact.outputs.filename }}
114114
path: ./build/distributions/content/*/*

0 commit comments

Comments
 (0)