Skip to content

Commit 7ad0461

Browse files
committed
bump to latest 6.0 SDK
1 parent 6f3cc42 commit 7ad0461

File tree

3 files changed

+5
-17
lines changed

3 files changed

+5
-17
lines changed

.github/workflows/buildAndTest.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,13 @@ on: [push, pull_request]
55
jobs:
66
build:
77
timeout-minutes: 15 # we have a locking issue, so cap the runs at ~15m to account for varying build times, etc
8-
strategy:
9-
matrix:
10-
os: [ubuntu-20.04]
11-
dotnet: [6.0.201]
12-
fail-fast: false # we have timing issues on some OS, so we want them all to run
138

14-
runs-on: ${{ matrix.os }}
9+
runs-on: ubuntu-22.04
1510

1611
steps:
1712
- uses: actions/checkout@v2
1813
- name: Setup .NET Core
19-
uses: actions/setup-dotnet@v1
20-
with:
21-
dotnet-version: ${{ matrix.dotnet }}
14+
uses: actions/setup-dotnet@v4
2215
- name: Restore
2316
run: dotnet restore
2417
- name: Run Build

.github/workflows/publish.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,15 @@ on:
77

88
jobs:
99
release:
10-
strategy:
11-
matrix:
12-
dotnet: [6.0.201]
1310

14-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-22.04
1512

1613
steps:
1714
- uses: actions/checkout@v2
1815
with:
1916
ref: ${{ github.head_ref }}
2017
- name: Setup .NET Core
21-
uses: actions/setup-dotnet@v1
22-
with:
23-
dotnet-version: ${{ matrix.dotnet }}
18+
uses: actions/setup-dotnet@v4
2419
- name: Restore
2520
run: dotnet restore
2621
- name: Run Build

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "6.0.201"
3+
"version": "6.0.400"
44
}
55
}

0 commit comments

Comments
 (0)