You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build-gtk.yml
+8-7Lines changed: 8 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -4,24 +4,26 @@ on: [push, pull_request]
4
4
jobs:
5
5
build_and_test:
6
6
name: Build & Test
7
-
runs-on: ubuntu-22.04
7
+
runs-on: ubuntu-24.04
8
8
env:
9
9
GtkSharpVersion: 3.24.24.117-develop
10
10
GtkSharpManifestVersion: 8.0.200
11
11
DotnetVersion: 8.0.200
12
12
steps:
13
13
- name: Checkout MAUI repo
14
-
uses: actions/checkout@v2
14
+
uses: actions/checkout@v4
15
+
15
16
- name: Setup .NET SDK ${{ env.DotnetVersion }}
16
-
uses: actions/setup-dotnet@v1.7.2
17
+
uses: actions/setup-dotnet@v4
17
18
with:
18
19
dotnet-version: ${{ env.DotnetVersion }}
20
+
19
21
- name: Install gtk workload
20
22
run: |
21
23
# For some reason automatic workload manifest detection doesn't work (see https://github.com/GtkSharp/GtkSharp/issues/355#issuecomment-1446262239), so download and uzip mainfest file manually
0 commit comments