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

Update GitHub Artifact Actions to v4 (major) #287

Merged
merged 1 commit into from
Jul 13, 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.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
Loading