Skip to content

Commit

Permalink
bump to latest 6.0 SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel committed Dec 5, 2023
1 parent 6f3cc42 commit 7ad0461
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 17 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/buildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,13 @@ on: [push, pull_request]
jobs:
build:
timeout-minutes: 15 # we have a locking issue, so cap the runs at ~15m to account for varying build times, etc
strategy:
matrix:
os: [ubuntu-20.04]
dotnet: [6.0.201]
fail-fast: false # we have timing issues on some OS, so we want them all to run

runs-on: ${{ matrix.os }}
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
uses: actions/setup-dotnet@v4
- name: Restore
run: dotnet restore
- name: Run Build
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,15 @@ on:

jobs:
release:
strategy:
matrix:
dotnet: [6.0.201]

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
uses: actions/setup-dotnet@v4
- name: Restore
run: dotnet restore
- name: Run Build
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "6.0.201"
"version": "6.0.400"
}
}

0 comments on commit 7ad0461

Please sign in to comment.