Skip to content

Commit

Permalink
Update actions deps
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev committed Mar 9, 2024
1 parent 9e7827a commit 995c34c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
os: [ubuntu-22.04, macos-12, macos-14]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- if: runner.os == 'macOS'
run: brew install pipx
- name: Build wheels
Expand All @@ -25,7 +25,17 @@ jobs:
python {package}/test_cython/runtests.py
CIBW_REPAIR_WHEEL_COMMAND: >
bash scripts/cibw_repair_wheel_command.sh {dest_dir} {wheel}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
path: ./wheelhouse/
merge:
runs-on: ubuntu-22.04
needs: build_wheels
steps:
- name: Merge Wheels
uses: actions/upload-artifact/merge@v4
with:
name: wheels
path: ./wheelhouse
pattern: wheels-*
delete-merged: true
8 changes: 4 additions & 4 deletions .github/workflows/pip_install_gmpy2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Libs
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
gcov_include: src/*.c
gcov_args: --no-external
- name: Archive build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.python-version == 3.11
with:
path: |
Expand All @@ -89,7 +89,7 @@ jobs:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
name: Setup msys2
with:
Expand Down

0 comments on commit 995c34c

Please sign in to comment.