Skip to content

Commit a291857

Browse files
committed
update actions
1 parent 1893f4d commit a291857

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/cibuildwheel.yml

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

2323
steps:
2424
# Note: the action happens inside a docker image
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4.2
2626

2727
- name: Build wheels
28-
uses: pypa/cibuildwheel@v2.11.4
28+
uses: pypa/cibuildwheel@v2.21.1
2929
env:
3030
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
3131
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
@@ -48,10 +48,10 @@ jobs:
4848

4949
steps:
5050
# Note: not inside a docker
51-
- uses: actions/checkout@v3
52-
- uses: actions/setup-python@v3
51+
- uses: actions/checkout@v4.2
52+
- uses: actions/setup-python@v4
5353
with:
54-
python-version: 'pypy-3.9'
54+
python-version: 'pypy-3.10'
5555

5656
- name: Install system libraries
5757
run: sudo apt install -y libunwind-dev libelf-dev libdwarf-dev rename

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
# Test all supported versions on Ubuntu:
2020
os: [ubuntu-latest]
21-
python: ["3.9", "3.10", "pypy-3.9"]
21+
python: ["3.9", "3.10", "3.11", "pypy-3.10"]
2222
experimental: [false]
2323
# include:
2424
# - os: macos-latest
@@ -28,13 +28,13 @@ jobs:
2828
# python: "3.10"
2929
# experimental: false
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4.2
3232
- name: Install libunwind
3333
run: |
3434
sudo apt install -y libunwind-dev
3535
pkg-config libunwind --cflags --libs-only-l
3636
- name: Set up Python ${{ matrix.python }}
37-
uses: actions/setup-python@v4
37+
uses: actions/setup-python@v5.2
3838
with:
3939
python-version: ${{ matrix.python }}
4040
- name: Install

0 commit comments

Comments
 (0)