From be543c28f798c06c843db18be87fe4f7234a7924 Mon Sep 17 00:00:00 2001 From: firefart Date: Sat, 10 Sep 2022 21:49:09 +0200 Subject: [PATCH] update workflow and readme --- .github/workflows/go.yml | 2 +- README.md | 6 +++--- go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 06c6601a..39aa874e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ["1.16.0"] + go: ["1.17", "1.18", "1.19"] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v2 diff --git a/README.md b/README.md index 8b7d7bc2..09b04e1b 100644 --- a/README.md +++ b/README.md @@ -177,17 +177,17 @@ If you're stupid enough to trust binaries that I've put together, you can downlo ### Using `go install` -If you have a [Go](https://golang.org/) environment ready to go (at least go 1.16), it's as easy as: +If you have a [Go](https://golang.org/) environment ready to go (at least go 1.17), it's as easy as: ```bash go install github.com/OJ/gobuster/v3@latest ``` -PS: You need at least go 1.16.0 to compile gobuster. +PS: You need at least go 1.17.0 to compile gobuster. ## Building From Source -Since this tool is written in [Go](https://golang.org/) you need to install the Go language/compiler/etc. Full details of installation and set up can be found [on the Go language website](https://golang.org/doc/install). Once installed you have two options. You need at least go 1.16.0 to compile gobuster. +Since this tool is written in [Go](https://golang.org/) you need to install the Go language/compiler/etc. Full details of installation and set up can be found [on the Go language website](https://golang.org/doc/install). Once installed you have two options. You need at least go 1.17.0 to compile gobuster. ### Compiling diff --git a/go.mod b/go.mod index cca84391..666d393f 100644 --- a/go.mod +++ b/go.mod @@ -8,4 +8,4 @@ require ( golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 ) -go 1.16 +go 1.17