Skip to content

Commit 52c0e16

Browse files
committed
Update ubuntu label to ubuntu-24.04
1 parent b17c885 commit 52c0e16

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/scripts/create_python_matrix.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
import tempfile
55

6-
json_dict = {"os": ["ubuntu-22.04", "windows-2022", "macos-14"], "python-version": []}
6+
json_dict = {"os": ["ubuntu-24.04", "windows-2022", "macos-14"], "python-version": []}
77

88
with tempfile.TemporaryDirectory() as temp_dir:
99
python_repo = git.Repo.clone_from('https://github.com/python/cpython.git', temp_dir)

.github/workflows/check.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
strategy:
6565
fail-fast: false
6666
matrix:
67-
os: [macos-14, windows-2022, ubuntu-22.04]
67+
os: [macos-14, windows-2022, ubuntu-24.04]
6868
steps:
6969
- name: Download built action
7070
uses: actions/download-artifact@v4
@@ -104,7 +104,7 @@ jobs:
104104
strategy:
105105
fail-fast: false
106106
matrix:
107-
os: [macos-14, windows-2022, ubuntu-22.04]
107+
os: [macos-14, windows-2022, ubuntu-24.04]
108108
steps:
109109
- name: Download built action
110110
uses: actions/download-artifact@v4

src/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
const toolName = 'Python';
1818

19-
const testedLabels = ['ubuntu-22.04', 'windows-2022', 'macos-14'];
19+
const testedLabels = ['ubuntu-24.04', 'windows-2022', 'macos-14'];
2020

2121
const minSupportedVersion = '3.7.0-0';
2222

0 commit comments

Comments
 (0)