Skip to content

Commit 7bf7b62

Browse files
authored
fix: 🐛 Fix import in update_ref and update python (#44)
1 parent a2f7226 commit 7bf7b62

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- name: Install Poetry
1515
run: pipx install poetry
16-
- name: Set up Python
16+
- name: Set up Python 3.12
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.11'
19+
python-version: '3.12'
2020
- name: Verify versioning
2121
run: |
2222
[ "$(poetry version -s)" == "${GITHUB_REF#refs/tags/v}" ]

.github/workflows/update_data.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- uses: actions/checkout@v4
1818
with:
1919
submodules: true
20-
- name: Set up Python 3.11
20+
- name: Set up Python 3.12
2121
uses: actions/setup-python@v5.6.0
2222
with:
23-
python-version: 3.11
23+
python-version: 3.12
2424
- name: Execute update_ref.py Script
2525
run: |
2626
pip install pySigma~=0.11

tools/update_ref.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Version 0.3.0
1+
# Version 0.3.1
22
# Author: frack113
3-
# Date: 2025/06/13
3+
# Date: 2025/08/03
44

55

66
from sys import stderr, stdout
77
from pprint import pformat
88
import sys
99

1010

11-
from sigma.validators.sigmahq.config import ConfigHQ
11+
from sigma.validators.sigmahq import ConfigHQ
1212

1313

1414
def write_sigmahq_data_py(url: str, output_path="sigma/validators/sigmahq/sigmahq_data.py"):

0 commit comments

Comments
 (0)