Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/build_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- uses: actions/checkout@v3
- uses: actions/checkout@v5.0.0
- uses: actions/[email protected]
name: Install Python
- name: Get submodules
Expand All @@ -34,7 +34,7 @@ jobs:
env:
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_SKIP: "pp*"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.6.2
with:
name: wheels
path: ./wheelhouse/*.whl
Expand All @@ -46,15 +46,15 @@ jobs:

steps:
- name: Set up Python
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.6.0
with:
python-version: '3.x'
- name: Install twine
run: |
python -m pip install --upgrade pip
pip install twine
- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v5.0.0
with:
name: wheels
path: ./wheelhouse
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5.0.0

- uses: actions/setup-python@v5.3.0
- uses: actions/setup-python@v5.6.0
name: Install Python

- name: Install cibuildwheel
Expand All @@ -38,7 +38,7 @@ jobs:
env:
CIBW_ARCHS_MACOS: "auto x86_64 universal2 arm64"

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.6.2
name: Upload wheels
with:
name: wheels
Expand All @@ -59,7 +59,7 @@ jobs:
python -m pip install --upgrade pip
pip install twine
- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v5.0.0
with:
name: wheels
path: ./wheels
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5.0.0

- uses: actions/setup-python@v5.3.0
- uses: actions/setup-python@v5.6.0
name: Install Python

- name: Install cibuildwheel
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5.0.0
- name: Set up Python
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.6.0
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def run(self):

setup(
name='yara-python-dex',
version='1.0.8',
version='1.0.9',
description='Python interface for YARA',
long_description=readme,
long_description_content_type='text/markdown',
Expand Down
Loading