summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test.yml1
-rw-r--r--README.md2
-rw-r--r--go.mod2
3 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index a3cbc35..88e39c4 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -16,7 +16,6 @@ jobs:
16 strategy: 16 strategy:
17 matrix: 17 matrix:
18 go_version: 18 go_version:
19 - '~1.16'
20 - '~1.17' 19 - '~1.17'
21 - '^1.18' 20 - '^1.18'
22 21
diff --git a/README.md b/README.md
index 2ee0606..ac956df 100644
--- a/README.md
+++ b/README.md
@@ -63,7 +63,7 @@ and then passed to some dangerous function like `system`".
63 63
64### From source 64### From source
65 65
66- Install Go (using your package manager, or [manually](https://go.dev/doc/install)) 66- Install Go >= 1.17 (using your package manager, or [manually](https://go.dev/doc/install))
67- Install libyara >= 4.2 (using your package manager, or [from source](https://yara.readthedocs.io/en/stable/gettingstarted.html)) 67- Install libyara >= 4.2 (using your package manager, or [from source](https://yara.readthedocs.io/en/stable/gettingstarted.html))
68- Download php-malware-finder: `git clone https://github.com/jvoisin/php-malware-finder.git` 68- Download php-malware-finder: `git clone https://github.com/jvoisin/php-malware-finder.git`
69- Build php-malware-finder: `cd php-malware-finder && make` 69- Build php-malware-finder: `cd php-malware-finder && make`
diff --git a/go.mod b/go.mod
index c2e4b32..98dfc0e 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
1module github.com/jvoisin/php-malware-finder 1module github.com/jvoisin/php-malware-finder
2 2
3go 1.16 3go 1.17
4 4
5require ( 5require (
6 github.com/hillu/go-yara/v4 v4.2.4 6 github.com/hillu/go-yara/v4 v4.2.4