Skip to content

Commit 994dec5

Browse files
committed
Changed: Migrate Workflows to Node 20
1 parent 92427f0 commit 994dec5

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-and-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ${{ matrix.os }}
5252
steps:
5353
- name: Checkout Code
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555
with:
5656
submodules: 'recursive'
5757
- name: Setup Reloaded Library SDKs & Components
@@ -61,16 +61,16 @@ jobs:
6161
- name: Run Tests
6262
run: dotnet test -f ${{ matrix.targetFramework }} ./src/Reloaded.Memory.Tests/Reloaded.Memory.Tests.csproj --collect:"XPlat Code Coverage;" --results-directory "Coverage"
6363
- name: "Upload Coverage"
64-
uses: actions/upload-artifact@v3
64+
uses: actions/upload-artifact@v4
6565
with:
66-
name: coverage-${{ matrix.os }}-${{ matrix.targetFramework }}
66+
name: coverage-${{ matrix.os }}-${{ matrix.targetFramework }}-${{ matrix.platform }}
6767
path: Coverage/*/coverage.cobertura.xml
6868
upload:
6969
needs: build
7070
runs-on: ubuntu-latest
7171
steps:
7272
- name: "Checkout Code"
73-
uses: actions/checkout@v3
73+
uses: actions/checkout@v4
7474
with:
7575
submodules: 'recursive'
7676
- name: "Setup Reloaded Library SDKs & Components"
@@ -80,7 +80,7 @@ jobs:
8080
- name: "Install ReportGenerator"
8181
run: dotnet tool install --global dotnet-reportgenerator-globaltool
8282
- name: "Download Coverage Artifacts"
83-
uses: actions/download-artifact@v3
83+
uses: actions/download-artifact@v4
8484
with:
8585
path: artifacts
8686
- name: "Merge Coverage Files"

0 commit comments

Comments
 (0)