Skip to content

Commit b65262d

Browse files
committed
Bump GitHub Actions and Python package versions
Updated dependencies to latest stable versions: - actions/checkout: v4 → v5 - actions/setup-python: v5 → v6 - black: 25.1.0 → 25.9.0 - macOS runner: macos-14 → macos-15
1 parent 1999e94 commit b65262d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Set up Python
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: '3.12'
2828

@@ -38,7 +38,7 @@ jobs:
3838
pip install --user setuptools wheel
3939
4040
- name: Check out Kconfiglib source code
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
- name: Build source distribution
4444
run: |

.github/workflows/style.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313

1414
steps:
1515
- name: Check out Kconfiglib source code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: '3.12'
2222

2323
- name: Install tools
2424
run: |
2525
sudo apt-get install -q=2 shfmt python3-pip
26-
pip3 install black==25.1.0
26+
pip3 install black==25.9.0
2727
2828
- name: Run format check
2929
run: |

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
builder: ubuntu-24.04
3737
- python: '3.12'
3838
os: macOS
39-
builder: macos-14
39+
builder: macos-15
4040
# - python: '3.12'
4141
# os: Windows
4242
# builder: windows-2022
@@ -51,7 +51,7 @@ jobs:
5151
fi
5252
5353
- name: Set up Python
54-
uses: actions/setup-python@v5
54+
uses: actions/setup-python@v6
5555
with:
5656
python-version: ${{ matrix.target.python }}
5757

@@ -67,15 +67,15 @@ jobs:
6767
pip install --user setuptools wheel
6868
6969
- name: Check out Linux source code
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171
# On Windows, checkout of 'aux.c' is expected to fail because ... Windows.
7272
continue-on-error: true
7373
with:
7474
repository: torvalds/linux
7575
ref: v5.4
7676

7777
- name: Check out Kconfiglib source code
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v5
7979
with:
8080
path: Kconfiglib
8181

0 commit comments

Comments
 (0)