Skip to content

Commit

Permalink
update actions/upload-artifact to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangtianyu authored and myoss committed Oct 10, 2024
1 parent 7e283ae commit 4a61840
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-plugin-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: ./gradlew buildPlugin

- name: Upload plugin artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: DevPilot-local
path: build/distributions/DevPilot-*.zip
2 changes: 1 addition & 1 deletion .github/workflows/build-plugin-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: ./gradlew buildPlugin

- name: Upload plugin artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: DevPilot-production
path: build/distributions/DevPilot-*.zip
2 changes: 1 addition & 1 deletion .github/workflows/build-plugin-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: ./gradlew buildPlugin

- name: Upload plugin artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: DevPilot-test
path: build/distributions/DevPilot-*.zip
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Collect Tests Result
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests

0 comments on commit 4a61840

Please sign in to comment.