Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Upload Action #919

Merged
merged 2 commits into from
Oct 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,15 +182,15 @@ jobs:
# upload test results artifact
- name: Upload test results artifact
if: (success() || failure()) && steps.build.conclusion == 'success'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.1.7
with:
name: Test-Results ${{ inputs.os }}-${{ matrix.fwk }}
path: './temp/tests/results/*.trx'

# upload test coverage artifact
- name: Upload test coverage artifact
if: steps.test.conclusion == 'success'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.1.7
with:
name: Test-Coverage ${{ inputs.os }}-${{ matrix.fwk }}
path: './temp/tests/cover/' # entire directory
Expand All @@ -207,7 +207,7 @@ jobs:
# upload nuget packages
- name: Upload NuGet packages artifact
if: steps.release-artifacts.outputs.build == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.1.7
with:
name: NuGet-Packages
path: './temp/output/Hazelcast.Net.*pkg'
Expand All @@ -221,7 +221,7 @@ jobs:
# archive examples (windows only)
- name: Archive examples artifact
if: steps.release-artifacts.outputs.build == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.1.7
with:
name: Examples
path: './temp/examples/*.zip'
Expand All @@ -241,7 +241,7 @@ jobs:
# archive docs patch
- name: Upload docs patch artifact
if: steps.release-artifacts.outputs.build == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.1.7
with:
name: Docs-Patch
path: './temp/gh-pages-patches/*.patch'
Loading