Skip to content

Commit

Permalink
Changed: Migrate Workflows to Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Feb 21, 2024
1 parent 92427f0 commit 994dec5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup Reloaded Library SDKs & Components
Expand All @@ -61,16 +61,16 @@ jobs:
- name: Run Tests
run: dotnet test -f ${{ matrix.targetFramework }} ./src/Reloaded.Memory.Tests/Reloaded.Memory.Tests.csproj --collect:"XPlat Code Coverage;" --results-directory "Coverage"
- name: "Upload Coverage"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.os }}-${{ matrix.targetFramework }}
name: coverage-${{ matrix.os }}-${{ matrix.targetFramework }}-${{ matrix.platform }}
path: Coverage/*/coverage.cobertura.xml
upload:
needs: build
runs-on: ubuntu-latest
steps:
- name: "Checkout Code"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: "Setup Reloaded Library SDKs & Components"
Expand All @@ -80,7 +80,7 @@ jobs:
- name: "Install ReportGenerator"
run: dotnet tool install --global dotnet-reportgenerator-globaltool
- name: "Download Coverage Artifacts"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: artifacts
- name: "Merge Coverage Files"
Expand Down

0 comments on commit 994dec5

Please sign in to comment.