From 96c1b822a50be60160ce05bed0a75c7bcb9f2755 Mon Sep 17 00:00:00 2001 From: Maor Kleinberger Date: Wed, 19 Jul 2023 02:38:34 +0300 Subject: [PATCH] Update actions (#30) --- .github/workflows/tests.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d3dc210..a677ce2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,7 @@ jobs: # git needed for checkout # patchelf needed for auditwheel run: apk add gcc musl-dev git patchelf - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Install dependencies @@ -40,7 +40,7 @@ jobs: - name: Audit wheel run: auditwheel repair .tox/.pkg/dist/*.whl -w audited_wheels - name: Upload wheel - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: dist path: audited_wheels/* @@ -54,7 +54,7 @@ jobs: matrix: python-version: [cp37-cp37m, cp38-cp38, cp39-cp39, cp310-cp310, cp311-cp311] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Set up Python @@ -68,7 +68,7 @@ jobs: - name: Audit wheel run: auditwheel repair .tox/.pkg/dist/*.whl -w audited_wheels - name: Upload wheel - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: dist path: audited_wheels/* @@ -81,11 +81,11 @@ jobs: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] arch: [x86, x64] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} architecture: ${{ matrix.arch }} @@ -94,7 +94,7 @@ jobs: - name: Test with tox run: python -m tox - name: Upload wheel - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: dist path: .tox/.pkg/dist/* @@ -106,11 +106,11 @@ jobs: matrix: python-version: [ "3.11" ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -118,7 +118,7 @@ jobs: - name: Test with tox run: sudo python -m tox -e sdist - name: Upload dist - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: dist path: .tox/.pkg/dist/*