Skip to content

Commit

Permalink
upgrade action
Browse files Browse the repository at this point in the history
  • Loading branch information
emreyigit committed Oct 3, 2024
1 parent 6e08f30 commit 7865b78
Showing 1 changed file with 5 additions and 5 deletions.
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@v4
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@v4
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@v4
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@v4
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@v4
uses: actions/upload-artifact@v4.1.7
with:
name: Docs-Patch
path: './temp/gh-pages-patches/*.patch'

0 comments on commit 7865b78

Please sign in to comment.