From 8127691276f8244e5b39c1745e50c14eb0762b1b Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 3 Feb 2021 11:48:54 +1100 Subject: [PATCH 1/2] force ubuntu-18.04 for github actions building on ubuntu 20.04 was causing issue with a too recent glibc for some users dependent on ubuntu 18.04 or similar (elementary OS) The issue arise as github action ubuntu-latest was upgraded recently too ubuntu 20.04. This fix forces the app to be built on ubuntu 18.04 Relates #1471 --- .github/workflows/build-binaries.yml | 2 +- .github/workflows/pull-request.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 77530ff14..45587fb2c 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2016, macos-latest, ubuntu-latest] + os: [windows-2016, macos-latest, ubuntu-18.04] env: SIGNAL_ENV: production GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 6e88e1435..78779acaa 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2016, macos-latest, ubuntu-latest] + os: [windows-2016, macos-latest, ubuntu-18.04] env: SIGNAL_ENV: production GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 69b325462..3ea28d4a2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2016, macos-latest, ubuntu-latest] + os: [windows-2016, macos-latest, ubuntu-18.04] env: SIGNAL_ENV: production GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 258a7b83e88a5de10c3167c2939877d8ecef5f18 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 3 Feb 2021 11:51:06 +1100 Subject: [PATCH 2/2] bump to v1.4.9 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 19a9a0477..3ee366c69 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "session-desktop", "productName": "Session", "description": "Private messaging from your desktop", - "version": "1.4.8", + "version": "1.4.9", "license": "GPL-3.0", "author": { "name": "Loki Project", @@ -333,4 +333,4 @@ "!dev-app-update.yml" ] } -} \ No newline at end of file +}