Skip to content

Commit d822a74

Browse files
authored
Update benchmark-action.yml to use NET 8 (#5157)
* Update benchmark-action.yml * Update actions/cache to version 3 in workflow
1 parent 7fb5119 commit d822a74

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/benchmark-action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
2727
- uses: actions/setup-dotnet@v4
2828
with:
29-
dotnet-version: '6.0.418'
29+
dotnet-version: '8.0.x'
3030
- name: Run benchmark
31-
run: cd tests/Microsoft.Identity.Test.Performance && dotnet run -c release -f net6.0 --exporters json
31+
run: cd tests/Microsoft.Identity.Test.Performance && dotnet run -c release -f net8.0 --exporters json
3232

3333
- name: Download previous benchmark data
34-
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3
34+
uses: actions/cache@v3
3535
with:
3636
path: ./cache
3737
key: ${{ runner.os }}-benchmark

0 commit comments

Comments
 (0)