Skip to content

Commit

Permalink
latest action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed Oct 25, 2023
1 parent 0db11b9 commit 8e65011
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: sudo apt-get install liblzo2-dev

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
run: sudo apt-get install liblzo2-dev

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
run: sudo apt-get install liblzo2-dev

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,32 +33,32 @@ jobs:
CIBW_BUILD: "cp38-*"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.11"

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v1.0.2
uses: microsoft/setup-msbuild@v1.3

- name: delvewheel install
if: runner.os == 'Windows'
run: |
python -m pip install delvewheel==0.0.9 cython
- name: Build wheels
uses: joerick/cibuildwheel@v2.11.2
uses: joerick/cibuildwheel@v2.16.2

- name: Install wheels
shell: bash -l {0}
Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
CIBW_TEST_SKIP: "*"

steps:
- uses: actions/checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -38,13 +38,13 @@ jobs:

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild
uses: microsoft/setup-msbuild@1.3

- name: delvewheel install
if: runner.os == 'Windows'
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
CIBW_TEST_SKIP: "*"

steps:
- uses: actions/checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -93,13 +93,13 @@ jobs:

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild
uses: microsoft/setup-msbuild@1.3

- name: delvewheel install
if: runner.os == 'Windows'
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
CIBW_TEST_SKIP: "*"

steps:
- uses: actions/checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -148,13 +148,13 @@ jobs:

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild
uses: microsoft/setup-msbuild@1.3

- name: delvewheel install
if: runner.os == 'Windows'
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
CIBW_BEFORE_TEST: "git status"

steps:
- uses: actions/checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -203,13 +203,13 @@ jobs:

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild
uses: microsoft/setup-msbuild@1.3

- name: delvewheel install
if: runner.os == 'Windows'
Expand Down Expand Up @@ -241,19 +241,19 @@ jobs:
CIBW_TEST_SKIP: "*"

steps:
- uses: actions/checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Build wheels
uses: joerick/[email protected]

- uses: actions/upload-artifact
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: wheels

0 comments on commit 8e65011

Please sign in to comment.