Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/branchbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v5"
with:
submodules: 'true'

Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v5"

- uses: "actions/setup-python@v5"
with:
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v5"

- uses: "actions/setup-python@v5"
with:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-13]

steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v5"
with:
submodules: 'true'
- uses: "actions/setup-python@v5"
Expand Down Expand Up @@ -194,11 +194,11 @@ jobs:
name: "Test sse2 code on Linux (gcc)"
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v5"
with:
submodules: 'true'

- uses: "actions/checkout@v4"
- uses: "actions/checkout@v5"
with:
repository: rapidfuzz/intel-sde
path: sde
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: "Generate coverage report for tests"
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v5"
with:
submodules: 'true'
- uses: "actions/setup-python@v5"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
build:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'true'
- uses: actions/setup-python@v5
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/releasebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'true'
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
CIBW_BUILD_VERBOSITY: 3

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: artifact-sdist
path: dist
Expand All @@ -78,7 +78,7 @@ jobs:
- uses: actions/setup-python@v5

- name: Build wheels
uses: pypa/cibuildwheel@v2.23.3
uses: pypa/cibuildwheel@v3.1.3
with:
package-dir: rapidfuzz.tar.gz
output-dir: wheelhouse
Expand All @@ -103,7 +103,7 @@ jobs:
CIBW_BUILD_VERBOSITY: 3

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: artifact-sdist
path: dist
Expand All @@ -114,7 +114,7 @@ jobs:
run: cp dist/*.tar.gz rapidfuzz.tar.gz

- name: Build wheels
uses: pypa/cibuildwheel@v2.23.3
uses: pypa/cibuildwheel@v3.1.3
with:
package-dir: rapidfuzz.tar.gz
output-dir: wheelhouse
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
CIBW_BUILD_VERBOSITY: 3

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: artifact-sdist
path: dist
Expand All @@ -174,7 +174,7 @@ jobs:
image: tonistiigi/binfmt:qemu-v8.1.5

- name: Build wheel
uses: pypa/cibuildwheel@v2.23.3
uses: pypa/cibuildwheel@v3.1.3
with:
package-dir: rapidfuzz.tar.gz
output-dir: wheelhouse
Expand All @@ -194,7 +194,7 @@ jobs:
CIBW_BUILD_VERBOSITY: 3

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: artifact-sdist
path: dist
Expand All @@ -207,7 +207,7 @@ jobs:
run: cp dist/*.tar.gz rapidfuzz.tar.gz

- name: Build wheel
uses: pypa/cibuildwheel@v2.23.3
uses: pypa/cibuildwheel@v3.1.3
with:
package-dir: rapidfuzz.tar.gz
output-dir: wheelhouse
Expand All @@ -227,7 +227,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
path: dist
pattern: artifact-*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/submodule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v5"
with:
submodules: 'true'
# checkout never fetches tags for submodules so do it manually
Expand Down
Loading