Skip to content

Commit a0f9021

Browse files
authored
Merge pull request #3 from MobSF/bump
v1.0.7
2 parents 75f0fe0 + 18411b0 commit a0f9021

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/build_publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
os: [ubuntu-latest, windows-latest, macOS-latest]
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4.2.2
1717

18-
- uses: actions/setup-python@v3
18+
- uses: actions/setup-python@v5.3.0
1919
name: Install Python
2020

2121
- name: Install cibuildwheel
22-
run: python -m pip install cibuildwheel==2.15.0
22+
run: python -m pip install cibuildwheel==2.21.3
2323

2424
- name: Get submodules
2525
run: git submodule update --init --recursive
@@ -38,7 +38,7 @@ jobs:
3838
env:
3939
CIBW_ARCHS_MACOS: "auto x86_64 universal2 arm64"
4040

41-
- uses: actions/upload-artifact@v3
41+
- uses: actions/upload-artifact@v4.4.3
4242
name: Upload wheels
4343
with:
4444
name: wheels
@@ -51,15 +51,15 @@ jobs:
5151

5252
steps:
5353
- name: Set up Python
54-
uses: actions/setup-python@v3
54+
uses: actions/setup-python@v5.3.0
5555
with:
5656
python-version: '3.x'
5757
- name: Install twine
5858
run: |
5959
python -m pip install --upgrade pip
6060
pip install twine
6161
- name: Download Artifacts
62-
uses: actions/download-artifact@v3
62+
uses: actions/download-artifact@v4.1.8
6363
with:
6464
name: wheels
6565
path: ./wheels

.github/workflows/build_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
os: [ubuntu-latest, windows-latest, macOS-latest]
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4.2.2
1515

16-
- uses: actions/setup-python@v3
16+
- uses: actions/setup-python@v5.3.0
1717
name: Install Python
1818

1919
- name: Install cibuildwheel
20-
run: python -m pip install cibuildwheel==2.15.0
20+
run: python -m pip install cibuildwheel==2.21.3
2121

2222
- name: Get submodules
2323
run: git submodule update --init --recursive
@@ -34,4 +34,4 @@ jobs:
3434
run: |
3535
python -m cibuildwheel --output-dir wheels
3636
env:
37-
CIBW_ARCHS_MACOS: "auto x86_64 universal2 arm64"
37+
CIBW_ARCHS_MACOS: "auto x86_64 universal2 arm64"

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4.2.2
1212
- name: Set up Python
13-
uses: actions/setup-python@v3
13+
uses: actions/setup-python@v5.3.0
1414
with:
1515
python-version: '3.x'
1616
- name: Install dependencies

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ def run(self):
312312

313313
setup(
314314
name='yara-python-dex',
315-
version='1.0.6',
315+
version='1.0.7',
316316
description='Python interface for YARA',
317317
long_description=readme,
318318
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)