Skip to content

Commit cad034a

Browse files
committed
Bump GHA Ubuntu workflow runners to Ubuntu 26.04
1 parent 9ca0c11 commit cad034a

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ on:
1111
jobs:
1212
linux-min:
1313
name: Linux Min Config
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-26.04
1515
strategy:
1616
matrix:
17-
compiler: [clang++-15, g++-12]
17+
compiler: [clang++-20, g++-15]
1818
steps:
1919
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2020
- name: Install Dependencies
@@ -32,7 +32,7 @@ jobs:
3232
linux-latest:
3333
name: Linux Latest Config
3434
needs: [linux-min]
35-
runs-on: ubuntu-24.04
35+
runs-on: ubuntu-26.04
3636
strategy:
3737
matrix:
3838
compiler: [clang++, g++]

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
pre-commit:
1313
name: Pre-commit checks
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-26.04
1515
steps:
1616
- name: Checkout code
1717
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
@@ -21,6 +21,6 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v6
2323
with:
24-
python-version: "3.10"
24+
python-version: "3.14"
2525
- name: Run pre-commit checks on PR
2626
uses: pre-commit/action@v3.0.1

exercises/practice/complex-numbers/test/catch_amalgamated.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,10 +468,10 @@ namespace Catch {
468468
}
469469

470470
namespace literals {
471-
Approx operator "" _a(long double val) {
471+
Approx operator ""_a(long double val) {
472472
return Approx(val);
473473
}
474-
Approx operator "" _a(unsigned long long val) {
474+
Approx operator ""_a(unsigned long long val) {
475475
return Approx(val);
476476
}
477477
} // end namespace literals

0 commit comments

Comments
 (0)