Browse Source

Downgrade checkout action (?)

tags/v0.6.5
Ben Kurtovic 8 months ago
parent
commit
258aac9884
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      .github/workflows/build-wheels.yml
  2. +2
    -2
      .github/workflows/run-tests.yml

+ 2
- 2
.github/workflows/build-wheels.yml View File

@@ -5,7 +5,7 @@ jobs:
build-linux: build-linux:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1
- name: Build manylinux2014 x86-64 wheels - name: Build manylinux2014 x86-64 wheels
@@ -39,7 +39,7 @@ jobs:
- '3.10' - '3.10'
- '3.11' - '3.11'
steps: steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}


+ 2
- 2
.github/workflows/run-tests.yml View File

@@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version:
python-version:
- '3.7' - '3.7'
- '3.8' - '3.8'
- '3.9' - '3.9'
@@ -14,7 +14,7 @@ jobs:
- '3.11' - '3.11'
with-extension: ['0', '1'] with-extension: ['0', '1']
steps: steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:


Loading…
Cancel
Save