Skip to content

Commit 55e4f07

Browse files
authored
Merge pull request #21 from openzim/upgrade_ci
Upgrade CI actions
2 parents 1abff0d + de62896 commit 55e4f07

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/Publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ on:
66

77
jobs:
88
publish:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
permissions:
1111
id-token: write # mandatory for PyPI trusted publishing
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version-file: pyproject.toml
2020
architecture: x64
@@ -25,4 +25,4 @@ jobs:
2525
python -m build --sdist --wheel
2626
2727
- name: Upload to PyPI
28-
uses: pypa/gh-action-pypi-publish@release/v1.8
28+
uses: pypa/gh-action-pypi-publish@release/v1.12

.github/workflows/QA.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ on:
88

99
jobs:
1010
check-qa:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version-file: pyproject.toml
2020
architecture: x64

.github/workflows/Tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
run-tests:
1111
strategy:
1212
matrix:
13-
os: [ubuntu-22.04]
13+
os: [ubuntu-24.04]
1414
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1515
runs-on: ${{ matrix.os }}
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- name: Set up Python ${{ matrix.python }}
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python }}
2424
architecture: x64
@@ -38,12 +38,12 @@ jobs:
3838
token: ${{ secrets.CODECOV_TOKEN }}
3939

4040
build_python:
41-
runs-on: ubuntu-22.04
41+
runs-on: ubuntu-24.04
4242
steps:
43-
- uses: actions/checkout@v3
43+
- uses: actions/checkout@v4
4444

4545
- name: Set up Python
46-
uses: actions/setup-python@v4
46+
uses: actions/setup-python@v5
4747
with:
4848
python-version-file: pyproject.toml
4949
architecture: x64

0 commit comments

Comments
 (0)