Skip to content

Commit

Permalink
bump github actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
letmaik committed Dec 9, 2023
1 parent 5854a15 commit 0aab4bf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ jobs:
runs-on: ${{ matrix.config.os-image }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true

- name: Set up QEMU
if: matrix.config.python-arch == 'aarch64'
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Build wheels (Linux)
if: matrix.config.os-name == 'linux'
Expand All @@ -159,7 +159,7 @@ jobs:

- name: Setup Python (Windows)
if: matrix.config.os-name == 'windows'
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.config.python-version }}

Expand All @@ -181,7 +181,7 @@ jobs:
NUMPY_VERSION: ${{ matrix.config.numpy-version }}

- name: Store wheels as artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -192,15 +192,15 @@ jobs:
needs: build

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.7'

- name: Download wheels from artifact storage
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: wheels
path: dist
Expand Down

0 comments on commit 0aab4bf

Please sign in to comment.