Skip to content

Commit

Permalink
Upgrade to Ubuntu 24.04 CI runner
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul committed May 24, 2024
1 parent e5cf0a6 commit 5054159
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
tauri-build-flags:

- artifact-name: Linux-x86_64
os: ubuntu-22.04
os: ubuntu-24.04
tauri-build-flags:

name: "${{ matrix.artifact-name }}"
Expand All @@ -44,16 +44,15 @@ jobs:
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update -y
sudo apt-get install -y \
NEEDRESTART_MODE=l sudo -E apt-get install -y \
build-essential \
curl \
file \
libayatana-appindicator3-dev \
libgtk-3-dev \
librsvg2-dev \
libssl-dev \
libwebkit2gtk-4.0-dev \
wget
libwebkit2gtk-4.1-dev
- name: Install Node.js dependencies
run: npm install
Expand Down Expand Up @@ -92,7 +91,7 @@ jobs:
release:
name: Create draft release
needs: [build]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: |
github.repository_owner == 'SleipnirGroup' &&
startsWith(github.ref, 'refs/tags/v')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/choreolib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
build-options:

name: "${{ matrix.artifact-name }}"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container: ${{ matrix.container }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
combine:
name: Combine
needs: [build-docker, build-host]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:

jobs:
deploy:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency:
jobs:
format:
name: "Format"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -23,16 +23,15 @@ jobs:
- name: Install Linux dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y \
NEEDRESTART_MODE=l sudo -E apt-get install -y \
build-essential \
curl \
file \
libayatana-appindicator3-dev \
libgtk-3-dev \
librsvg2-dev \
libssl-dev \
libwebkit2gtk-4.0-dev \
wget
libwebkit2gtk-4.1-dev
- uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -75,7 +74,7 @@ jobs:

tidy:
name: "clang-tidy"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 5054159

Please sign in to comment.