Skip to content

Commit 4a65f4e

Browse files
authored
build: update workflows to use dotnet 8.0 (#488)
1 parent e6d9eef commit 4a65f4e

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ main ]
66
pull_request:
7-
branches: [ main, target-entity-framework-8 ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
jobs:
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup .NET
1616
uses: actions/setup-dotnet@v4
1717
with:
18-
dotnet-version: 6.0.x
18+
dotnet-version: 8.0.x
1919
- name: Restore dependencies
2020
run: dotnet restore
2121
- name: Build

.github/workflows/integration-tests-on-emulator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ main ]
66
pull_request:
7-
branches: [ main, target-entity-framework-8 ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
jobs:
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup .NET
2323
uses: actions/setup-dotnet@v4
2424
with:
25-
dotnet-version: 6.0.x
25+
dotnet-version: 8.0.x
2626
- name: Restore dependencies
2727
run: dotnet restore
2828
- name: Build

.github/workflows/integration-tests-on-production.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
name: integration-tests-on-production
22

33
on:
4-
push:
5-
branches: [ main ]
64
pull_request:
7-
branches: [ main, target-entity-framework-8 ]
5+
branches: [ main ]
86
workflow_dispatch:
97

108
jobs:
@@ -29,7 +27,7 @@ jobs:
2927
- name: Setup .NET
3028
uses: actions/setup-dotnet@v4
3129
with:
32-
dotnet-version: 6.0.x
30+
dotnet-version: 8.0.x
3331
- id: 'auth'
3432
uses: 'google-github-actions/auth@v2'
3533
with:

.github/workflows/samples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: samples
22

33
on:
44
pull_request:
5-
branches: [ main, target-entity-framework-8 ]
5+
branches: [ main ]
66
workflow_dispatch:
77

88
jobs:
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup .NET
1414
uses: actions/setup-dotnet@v4
1515
with:
16-
dotnet-version: 6.0.x
16+
dotnet-version: 8.0.x
1717
- name: Restore dependencies
1818
run: dotnet restore
1919
- name: Build

0 commit comments

Comments
 (0)