Skip to content

Commit 1fcd48f

Browse files
authored
Fix: Update check-schema to 24.04 (#368)
* Fix: Update check-schema to 24.04 During a scheduled brownout the check-schema workflow is failing with: ``` This is a scheduled Ubuntu 20.04 brownout. Ubuntu 20.04 LTS runner will be removed on 2025-04-01 ``` Bumping it to latest LTS version * more places * prepare for release
1 parent ff06b5c commit 1fcd48f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/CODEOWNERS

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
# the repo. Unless a later match takes precedence,
66
# @global-owner1 and @global-owner2 will be requested for
77
# review when someone opens a pull request.
8-
* @borda @akihironitta @carmocca @awaelchli
8+
* @borda @ethanwharris @justusschock @tchaton
99

1010
# CI/CD and configs
11-
/.github/ @akihironitta @borda
12-
*.yml @akihironitta @borda
11+
/.github/ @borda @ethanwharris @justusschock @tchaton
12+
*.yml @borda @ethanwharris @justusschock @tchaton
1313

1414
# Docs
1515
/docs/ @borda
@@ -19,5 +19,5 @@
1919
/.github/CODEOWNERS @borda
2020
/setup.py @borda
2121

22-
/src @borda @carmocca @awaelchli
23-
/tests/unittests @borda @carmocca @awaelchli
22+
/src @borda @ethanwharris @justusschock @tchaton
23+
/tests/unittests @borda @ethanwharris @justusschock @tchaton

.github/workflows/check-md-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
jobs:
1919
markdown-link-check:
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-24.04
2121
env:
2222
CONFIG_FILE: ${{ inputs.config-file }}
2323
MODIFIED_ONLY: "no"

.github/workflows/check-schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defaults:
2020

2121
jobs:
2222
schema:
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-24.04
2424
steps:
2525
- name: Checkout 🛎
2626
uses: actions/checkout@v4

.github/workflows/check-typing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ defaults:
3030

3131
jobs:
3232
mypy:
33-
runs-on: ubuntu-20.04
33+
runs-on: ubuntu-24.04
3434
steps:
3535
- name: Checkout 🛎️
3636
uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ on: [push]
5454

5555
jobs:
5656
pytest:
57-
runs-on: ubuntu-20.04
57+
runs-on: ubuntu-24.04
5858
steps:
5959
- uses: actions/checkout@v3
6060
- uses: actions/setup-python@v4

src/lightning_utilities/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import time
22

3-
__version__ = "0.12.0"
3+
__version__ = "0.13.0"
44
__author__ = "Lightning AI et al."
55
__author_email__ = "[email protected]"
66
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)