Skip to content

Commit 36ad4eb

Browse files
committed
Bump CI dependencies
1 parent 183c898 commit 36ad4eb

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ on:
1111
jobs:
1212
code_check:
1313
name: Code check
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04
1515
steps:
1616

1717
- name: Checkout repo
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Setup Python
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
23-
python-version: 3.8
23+
python-version: 3.12
2424
cache: 'pip'
2525

2626
- name: Install formatter
@@ -31,16 +31,16 @@ jobs:
3131

3232
unit_tests:
3333
name: Run unit tests
34-
runs-on: ubuntu-latest
34+
runs-on: ubuntu-24.04
3535
steps:
3636

3737
- name: Checkout repo
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939

4040
- name: Setup Python
41-
uses: actions/setup-python@v4
41+
uses: actions/setup-python@v5
4242
with:
43-
python-version: 3.8
43+
python-version: 3.12
4444
cache: 'pip'
4545

4646
- name: Install dependencies
@@ -51,16 +51,16 @@ jobs:
5151

5252
package_check:
5353
name: Package check
54-
runs-on: ubuntu-latest
54+
runs-on: ubuntu-24.04
5555
steps:
5656

5757
- name: Checkout repo
58-
uses: actions/checkout@v3
58+
uses: actions/checkout@v4
5959

6060
- name: Setup Python
61-
uses: actions/setup-python@v4
61+
uses: actions/setup-python@v5
6262
with:
63-
python-version: 3.8
63+
python-version: 3.12
6464
cache: 'pip'
6565

6666
- name: Build tools

.github/workflows/deploy_to_pypi.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@ on:
77
jobs:
88
build-n-publish:
99
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
steps:
12-
- uses: actions/checkout@master
13-
- name: Set up Python 3.9
14-
uses: actions/setup-python@v1
12+
- uses: actions/checkout@v4
13+
14+
- name: Set up Python
15+
uses: actions/setup-python@v5
1516
with:
16-
python-version: 3.9
17+
python-version: 3.12
1718

1819
- name: Get version number
1920
id: v

0 commit comments

Comments
 (0)