Skip to content

Commit

Permalink
Update GitHub Artifact Actions to v4 (#22)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 26, 2024
1 parent 8991ba7 commit ffd901f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Pack
run: dotnet pack --no-build -c Release /p:PackageOutputPath=${{env.BUILD_ARTIFACT_PATH}} /p:ContinuousIntegrationBuild=true -bl:${{env.BUILD_ARTIFACT_PATH}}/msbuild-pack.binlog
- name: Publish artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: ${{matrix.os}}
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Download coverage reports
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
- name: Install ReportGenerator tool
run: dotnet tool install -g dotnet-reportgenerator-globaltool
- name: Prepare coverage reports
Expand All @@ -69,7 +69,7 @@ jobs:
file: Cobertura.xml
fail_ci_if_error: false
- name: Save combined coverage report as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: Cobertura.xml
Expand All @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Download build'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: 'ubuntu-latest'
- name: 'Add NuGet source'
Expand All @@ -104,7 +104,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Download build'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: 'ubuntu-latest'
- name: 'Upload NuGet package and symbols'
Expand Down

0 comments on commit ffd901f

Please sign in to comment.