Skip to content

Commit

Permalink
Replace go get with go mod download
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenWeathers committed Oct 30, 2021
1 parent 1634df0 commit a82f9d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Get dependencies
run: |
go get -v -t -d ./...
go mod download
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ yarn-error.log*
.eslintcache

# local config
config.yaml
config.yaml
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ DB_NAME=

### Install dependencies
```
go get
go mod download
go install github.com/swaggo/swag/cmd/swag@latest
npm install
```
Expand Down

0 comments on commit a82f9d5

Please sign in to comment.