Skip to content

Commit e2cca24

Browse files
committed
update dependancies and README
1 parent 3674dd0 commit e2cca24

File tree

8 files changed

+744
-201
lines changed

8 files changed

+744
-201
lines changed

.github/workflows/go_build_linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v2
2222
with:
23-
go-version: 1.17
24-
- name: Install YARA v4.1
23+
go-version: 1.24
24+
- name: Install YARA v4.5.5
2525
run: |
26-
YARA_VERSION=4.1.3
26+
YARA_VERSION=4.5.5
2727
wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v${YARA_VERSION}.tar.gz | tar -C /tmp -xzf -
2828
( cd /tmp/yara-${YARA_VERSION} && ./bootstrap.sh && sudo ./configure && sudo make && sudo make install )
2929
- uses: actions/checkout@v2

.github/workflows/go_build_windows.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
msystem: MSYS
1616
path-type: minimal
1717
update: true
18-
install: mingw-w64-x86_64-toolchain mingw-w64-x86_64-pkg-config base-devel openssl-devel autoconf automake libtool unzip
18+
install: mingw-w64-x86_64-toolchain mingw-w64-x86_64-pkg-config pkg-config base-devel openssl-devel autoconf automake libtool unzip
1919
- name: Install YARA v4.1
2020
run: |
21-
wget -c https://github.com/VirusTotal/yara/archive/refs/tags/v4.1.3.zip -O /tmp/yara.zip
21+
wget -c https://github.com/VirusTotal/yara/archive/refs/tags/v4.5.5.zip -O /tmp/yara.zip
2222
cd /tmp && unzip yara.zip
23-
cd /tmp/yara-4.1.3
23+
cd /tmp/yara-4.5.5
2424
export PATH=${PATH}:/c/msys64/mingw64/bin:/c/msys64/mingw64/lib:/c/msys64/mingw64/lib/pkgconfig
2525
./bootstrap.sh
26-
./configure
26+
./configure --prefix=/mingw64
2727
make
2828
make install
2929
cp -r libyara/include/* /c/msys64/mingw64/include
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Go
3333
uses: actions/setup-go@v2
3434
with:
35-
go-version: 1.17
35+
go-version: 1.24
3636
- uses: actions/checkout@v2
3737
- name: Building Fastfinder
3838
shell: powershell

Icon.png

201 KB
Loading

0 commit comments

Comments
 (0)