Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DO NOT MERGE] Testing workflow stability with ubuntu 24.04 #2155

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
include:
- os: android
runner: ubuntu-latest
runner: ubuntu-24.04
- os: ios
runner: macos-latest
fail-fast: false
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- os: windows
runner: windows-latest
- os: linux
runner: ubuntu-latest
runner: ubuntu-24.04
fail-fast: false
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: Deploying on GitHub Pages
jobs:
deploy_preview:
name: Deploy preview versions on pull requests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
permissions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build_dev_image:
name: Build development image
if: github.ref_type == 'branch' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
environment: dev

steps:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
build_release_image:
name: Build release image
if: github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
environment: prod

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
include:
- os: android
runner: ubuntu-latest
runner: ubuntu-24.04
- os: ios
runner: macos-latest
fail-fast: false
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- os: windows
runner: windows-latest
- os: linux
runner: ubuntu-latest
runner: ubuntu-24.04
fail-fast: false
environment: prod

Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:

release_github:
name: Release on Github
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs:
- package_desktop
- release_mobile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
jobs:
code_analyze:
name: Analyze code
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: write
actions: write
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:

widget_test:
name: Widget test
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion appimage/AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ AppDir:
- libc6
- libjsoncpp25
- libsecret-1-0
- libmpv1
- libmpv2
- libdrm2
- libolm3
files:
Expand Down
Loading