Skip to content

CVE Fixes Rollup #353

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.17', '1.15', '1.14', '1.13' ]
go: [ '1.18', '1.19', '1.20' ]
name: Go ${{ matrix.go }} tests
steps:
- uses: actions/checkout@v2
Expand All @@ -24,9 +24,12 @@ jobs:
run: |
go get -t -d -v ./...
go get github.com/onsi/ginkgo/ginkgo
go install github.com/onsi/ginkgo/ginkgo
go get -u golang.org/x/lint/golint
go get -u github.com/modocache/gover
go install github.com/modocache/gover
go get -u github.com/mattn/goveralls
go install github.com/mattn/goveralls
- name: Run tests
run: |
ginkgo -r -cover --randomizeAllSpecs --randomizeSuites --failOnPending --trace --race --progress
Expand Down
2 changes: 1 addition & 1 deletion echo_router_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"log"
"net/http"

"github.com/labstack/echo"
"github.com/labstack/echo/v4"
"github.com/manyminds/api2go/routing"
)

Expand Down
11 changes: 2 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,11 @@ go 1.14

require (
github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813
github.com/gin-gonic/gin v1.6.2
github.com/gin-gonic/gin v1.10.0
github.com/gorilla/mux v1.7.4
github.com/julienschmidt/httprouter v1.3.0
github.com/labstack/echo v3.3.10+incompatible
github.com/labstack/gommon v0.3.0 // indirect
github.com/mattn/goveralls v0.0.11 // indirect
github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5 // indirect
github.com/labstack/echo/v4 v4.12.0
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.10.1
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect
golang.org/x/tools v0.1.7 // indirect
gopkg.in/guregu/null.v3 v3.4.0
)
Loading