Skip to content

Commit

Permalink
ci: Use Ubuntu 24.04 on GH actions
Browse files Browse the repository at this point in the history
Use the latest LTS version of Ubuntu.
  • Loading branch information
LukasWoodtli committed Oct 21, 2024
1 parent ee0c98d commit 1623d69
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on: [push, pull_request]

jobs:
standards:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

strategy:
matrix:
compiler: ["clang-14", "gcc-12"]
compiler: ["clang-18", "gcc-13"]
c_standard: ["99", "11"]
c_extensions: ["ON", "OFF"]

Expand All @@ -34,7 +34,7 @@ jobs:
CC: ${{ matrix.compiler }}

standalone-examples:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:

jobs:
build_and_test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

strategy:
matrix:
sanitizer: ["address", "leak", "thread", "undefined"]
compiler: ["clang-14", "gcc-12"]
compiler: ["clang-18", "gcc-13"]

steps:
- name: Checkout code including full history and submodules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-static-analyzer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
clang_static_analyzer:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout code including full history and submodules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
codeql:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout code including full history and submodules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compliance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: pull_request
jobs:
lint-code:
name: Run compliance checks
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout code including full history
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
coverage:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout code including full history and submodules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multiarch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
multiarch:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

jobs:
sonarcloud:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout code including full history and submodules
Expand Down

0 comments on commit 1623d69

Please sign in to comment.