Skip to content

Commit 468ba0f

Browse files
committed
chore(ci): upgrade workflow actions and sdk setup
1 parent 8510806 commit 468ba0f

File tree

5 files changed

+18
-14
lines changed

5 files changed

+18
-14
lines changed

.github/workflows/build-linux.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@ name: Build Linux
22
on: [push, pull_request]
33
env:
44
DOTNET_CLI_TELEMETRY_OPTOUT: 1
5+
DOTNET_NOLOGO: 1
56
jobs:
67
build:
78
runs-on: ubuntu-latest
89
steps:
910
- name: Checkout
10-
uses: actions/checkout@v4
11+
uses: actions/checkout@v6
1112
with:
1213
fetch-depth: 0
13-
- name: Setup .NET Core 8
14-
uses: actions/setup-dotnet@v4
14+
- name: Setup .NET SDK
15+
uses: actions/setup-dotnet@v5
1516
with:
16-
dotnet-version: 8.x
17+
global-json-file: global.json
1718
- name: Build Reason
1819
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
1920
- name: Build Version

.github/workflows/build-osx.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@ name: Build OSX
22
on: [push, pull_request]
33
env:
44
DOTNET_CLI_TELEMETRY_OPTOUT: 1
5+
DOTNET_NOLOGO: 1
56
jobs:
67
build:
78
runs-on: macOS-latest
89
steps:
910
- name: Checkout
10-
uses: actions/checkout@v4
11+
uses: actions/checkout@v6
1112
with:
1213
fetch-depth: 0
13-
- name: Setup .NET Core 8
14-
uses: actions/setup-dotnet@v4
14+
- name: Setup .NET SDK
15+
uses: actions/setup-dotnet@v5
1516
with:
16-
dotnet-version: 8.x
17+
global-json-file: global.json
1718
- name: Build Reason
1819
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
1920
- name: Build Version

.github/workflows/build-windows.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@ name: Build Windows
22
on: [push, pull_request]
33
env:
44
DOTNET_CLI_TELEMETRY_OPTOUT: 1
5+
DOTNET_NOLOGO: 1
56
jobs:
67
build:
78
runs-on: windows-latest
89
steps:
910
- name: Checkout
10-
uses: actions/checkout@v4
11+
uses: actions/checkout@v6
1112
with:
1213
fetch-depth: 0
13-
- name: Setup .NET Core 8
14-
uses: actions/setup-dotnet@v4
14+
- name: Setup .NET SDK
15+
uses: actions/setup-dotnet@v5
1516
with:
16-
dotnet-version: 8.x
17+
global-json-file: global.json
1718
- name: Build Reason
1819
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
1920
- name: Build Version

build/common.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<PackageReleaseNotes>https://github.com/exceptionless/Exceptionless.Net/releases</PackageReleaseNotes>
77
<MinVerSkip Condition="'$(Configuration)' == 'Debug'">true</MinVerSkip>
88
<MinVerTagPrefix>v</MinVerTagPrefix>
9+
<EnableWindowsTargeting>true</EnableWindowsTargeting>
910

1011
<Copyright>Copyright (c) 2025 Exceptionless. All rights reserved.</Copyright>
1112
<Authors>Exceptionless</Authors>

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.100",
3+
"version": "9.0.100",
44
"rollForward": "latestMinor"
55
}
6-
}
6+
}

0 commit comments

Comments
 (0)