Skip to content

Commit

Permalink
Update GitHub Artifact Actions to v4 (#287)
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 Jul 13, 2024
1 parent da44844 commit 48a55a5
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 @@ -90,7 +90,7 @@ jobs:
- name: Pack
run: dotnet pack --no-build -c Release /p:PackageOutputPath=${{env.BUILD_ARTIFACT_PATH}}
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{matrix.os}}
path: ${{env.BUILD_ARTIFACT_PATH}}
Expand All @@ -103,7 +103,7 @@ jobs:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Download coverage reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: Install ReportGenerator tool
run: dotnet tool install -g dotnet-reportgenerator-globaltool
- name: Prepare coverage reports
Expand All @@ -114,7 +114,7 @@ jobs:
file: Cobertura.xml
fail_ci_if_error: false
- name: Save combined coverage report as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: Cobertura.xml
Expand All @@ -131,7 +131,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Download build'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: 'ubuntu-latest'
- name: 'Add NuGet source'
Expand All @@ -149,7 +149,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Download build'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: 'ubuntu-latest'
- name: 'Upload NuGet package'
Expand Down

0 comments on commit 48a55a5

Please sign in to comment.