aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGravatar Sergio Andrés Virviescas Santana <developersavsgio@gmail.com> 2021-05-17 10:45:11 +0200
committerGravatar GitHub <noreply@github.com> 2021-05-17 10:45:11 +0200
commitfa3e5d85f29586ec8fbc8a93508c57f98a1ee476 (patch)
tree59112a7af9c07beeea4b9a4e83967ae37a41a79e /.github
parentUse proper content-type when it is not present (#1023) (diff)
downloadfasthttp-fa3e5d85f29586ec8fbc8a93508c57f98a1ee476.tar.gz
fasthttp-fa3e5d85f29586ec8fbc8a93508c57f98a1ee476.tar.bz2
fasthttp-fa3e5d85f29586ec8fbc8a93508c57f98a1ee476.zip
Run test with go 1.16.X (#1028)v1.25.0
* Run test with go 1.16.X * Fix min required go version * Add go tip * Update .github/workflows/security.yml Co-authored-by: Erik Dubbelboer <erik@dubbelboer.com> Co-authored-by: Erik Dubbelboer <erik@dubbelboer.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/security.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml
index d550ae7..da67002 100644
--- a/.github/workflows/security.yml
+++ b/.github/workflows/security.yml
@@ -4,15 +4,15 @@ jobs:
test:
strategy:
matrix:
- go-version: [1.13.x, 1.14.x, 1.15.x]
+ go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- - name: Install Go
- uses: actions/setup-go@v1
- with:
- go-version: ${{ matrix.go-version }}
- - name: Checkout code
- uses: actions/checkout@v2
- - name: Security
- run: go get github.com/securego/gosec/cmd/gosec; `go env GOPATH`/bin/gosec -exclude=G104,G304 ./...
+ - name: Install Go
+ uses: actions/setup-go@v1
+ with:
+ go-version: ${{ matrix.go-version }}
+ - name: Checkout code
+ uses: actions/checkout@v2
+ - name: Security
+ run: go get github.com/securego/gosec/cmd/gosec; `go env GOPATH`/bin/gosec -exclude=G104,G304 ./...