Bump actions/upload-artifact from 4 to 6 (#1)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
187e150bcf
commit
a4d9d2c1eb
|
|
@ -42,14 +42,14 @@ jobs:
|
||||||
run: dotnet test --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx"
|
run: dotnet test --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx"
|
||||||
|
|
||||||
- name: Upload test results
|
- name: Upload test results
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v6
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: test-results
|
name: test-results
|
||||||
path: '**/TestResults/*.trx'
|
path: '**/TestResults/*.trx'
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: build-artifacts
|
name: build-artifacts
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -83,7 +83,7 @@ jobs:
|
||||||
run: dotnet pack --configuration Release --no-restore -o ./nupkg
|
run: dotnet pack --configuration Release --no-restore -o ./nupkg
|
||||||
|
|
||||||
- name: Upload NuGet package
|
- name: Upload NuGet package
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: nuget-package
|
name: nuget-package
|
||||||
path: ./nupkg/*.nupkg
|
path: ./nupkg/*.nupkg
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@ jobs:
|
||||||
run: dotnet pack --configuration Release --no-build -o ./nupkg /p:PackageVersion=${{ steps.version.outputs.version }}
|
run: dotnet pack --configuration Release --no-build -o ./nupkg /p:PackageVersion=${{ steps.version.outputs.version }}
|
||||||
|
|
||||||
- name: Upload NuGet package artifact
|
- name: Upload NuGet package artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: nuget-package-${{ steps.version.outputs.version }}
|
name: nuget-package-${{ steps.version.outputs.version }}
|
||||||
path: ./nupkg/*.nupkg
|
path: ./nupkg/*.nupkg
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue