Skip to content

Commit 54f3a44

Browse files
Stop using deprecated runtime
1 parent 9541860 commit 54f3a44

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/flatpak-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Flatpak Builder
1010
runs-on: ubuntu-latest
1111
container:
12-
image: bilelmoussaoui/flatpak-github-actions:gnome-40
12+
image: bilelmoussaoui/flatpak-github-actions:gnome-44
1313
options: --privileged
1414
strategy:
1515
fail-fast: false
@@ -54,7 +54,7 @@ jobs:
5454
name: Flatpak Builder Stop At
5555
runs-on: ubuntu-latest
5656
container:
57-
image: bilelmoussaoui/flatpak-github-actions:gnome-40
57+
image: bilelmoussaoui/flatpak-github-actions:gnome-44
5858
options: --privileged
5959
steps:
6060
- uses: actions/checkout@v3
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070
needs: flatpak-builder
7171
container:
72-
image: bilelmoussaoui/flatpak-github-actions:gnome-40
72+
image: bilelmoussaoui/flatpak-github-actions:gnome-44
7373
options: --privileged
7474
steps:
7575
- uses: actions/checkout@v3

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: "Flatpak"
2626
runs-on: ubuntu-latest
2727
container:
28-
image: bilelmoussaoui/flatpak-github-actions:gnome-40
28+
image: bilelmoussaoui/flatpak-github-actions:gnome-44
2929
options: --privileged
3030
steps:
3131
- uses: actions/checkout@v2
@@ -72,7 +72,7 @@ jobs:
7272
name: "Flatpak"
7373
runs-on: ubuntu-latest
7474
container:
75-
image: bilelmoussaoui/flatpak-github-actions:gnome-40
75+
image: bilelmoussaoui/flatpak-github-actions:gnome-44
7676
options: --privileged
7777
strategy:
7878
matrix:
@@ -155,7 +155,7 @@ jobs:
155155
name: "Flatpak"
156156
runs-on: ubuntu-latest
157157
container:
158-
image: bilelmoussaoui/flatpak-github-actions:gnome-40
158+
image: bilelmoussaoui/flatpak-github-actions:gnome-44
159159
options: --privileged
160160
steps:
161161
- uses: actions/checkout@v2

flatpak-builder/tests/app-test/manifest-2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
---
33
id: org.example.MyApp.Devel
44
runtime: org.gnome.Platform
5-
runtime-version: "40"
5+
runtime-version: "44"
66
sdk: org.gnome.Sdk
77
command: test-project
88
finish-args:

flatpak-builder/tests/hash.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ const { computeHash } = require('../index')
22

33
test('The manifest hash should be computed properly', async () => {
44
const hash = await computeHash('./tests/manifest-1.yaml')
5-
expect(hash).toBe('29ed9085544904a2bca91a82c487b5d33961650f488743473f801ccde9279ae7')
5+
expect(hash).toBe('8c43f78c9f33c1f379521211c9b9e91fe051cef3f638e4427026beb27261a587')
66

77
const hash2 = await computeHash('./tests/manifest-3.json')
8-
expect(hash2).toBe('f75c438a29d4f04b7b53801a653e485fbdb773a284d9f53ae29087e927b2bdfe')
8+
expect(hash2).toBe('fb531a4e4d3227ff9cdb37b8d1b9830878aa63542a066c2bd157dd94c7dda1ba')
99
})

flatpak-builder/tests/manifest-1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
---
33
app-id: org.example.MyApp.Devel
44
runtime: org.gnome.Platform
5-
runtime-version: "40"
5+
runtime-version: "44"
66
sdk: org.gnome.Sdk
77
command: test-project
88
finish-args:

flatpak-builder/tests/manifest-3.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"app-id": "org.gnome.design.Contrast.Devel",
33
"runtime": "org.gnome.Platform",
4-
"runtime-version": "40",
4+
"runtime-version": "44",
55
"sdk": "org.gnome.Sdk",
66
"sdk-extensions": ["org.freedesktop.Sdk.Extension.rust-stable"],
77
"command": "contrast",

flatpak-builder/tests/test-project/org.example.MyApp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
---
33
app-id: org.example.MyApp.Devel
44
runtime: org.gnome.Platform
5-
runtime-version: "40"
5+
runtime-version: "44"
66
sdk: org.gnome.Sdk
77
command: test-project
88
finish-args:

0 commit comments

Comments
 (0)