Skip to content

Commit

Permalink
Merge pull request #10 from gomicro/update
Browse files Browse the repository at this point in the history
Go mod updates
  • Loading branch information
dan9186 authored Jul 3, 2022
2 parents ed3de9a + 8d2043f commit a173b58
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 82 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.29
version: v1.46

test:
name: Test
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.18

- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Directories
.DS_Store
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ Blockit provides an interface for establishing blockers where you do not wish to
# Primary Use Case
The reason this library exists is to allow for configuration of a service to proceed all the way to the point of standing up a status endpoint. It is intended to allow the service to configure itself asynchronously of its dependencies and not report healthy until those dependencies are all met. This is particularly useful with Docker and having the service start before its database, telemetry infrastructure, and logging infrastructure are in place.

# Requirements
Golang version 1.9 or higher

# Installation

```
Expand Down
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
module github.com/gomicro/blockit

go 1.16
go 1.18

require (
github.com/franela/goblin v0.0.0-20210113153425-413781f5e6c8
github.com/onsi/gomega v1.11.0
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0
)

require (
golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb // indirect
golang.org/x/text v0.3.3 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
3 changes: 0 additions & 3 deletions vendor/github.com/franela/goblin/go.mod

This file was deleted.

10 changes: 0 additions & 10 deletions vendor/github.com/onsi/gomega/go.mod

This file was deleted.

56 changes: 0 additions & 56 deletions vendor/github.com/onsi/gomega/go.sum

This file was deleted.

5 changes: 0 additions & 5 deletions vendor/gopkg.in/yaml.v2/go.mod

This file was deleted.

7 changes: 5 additions & 2 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# github.com/franela/goblin v0.0.0-20210113153425-413781f5e6c8
## explicit
## explicit; go 1.14
github.com/franela/goblin
# github.com/onsi/gomega v1.11.0
## explicit
## explicit; go 1.14
github.com/onsi/gomega
github.com/onsi/gomega/format
github.com/onsi/gomega/internal/assertion
Expand All @@ -16,10 +16,12 @@ github.com/onsi/gomega/matchers/support/goraph/node
github.com/onsi/gomega/matchers/support/goraph/util
github.com/onsi/gomega/types
# golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb
## explicit; go 1.11
golang.org/x/net/html
golang.org/x/net/html/atom
golang.org/x/net/html/charset
# golang.org/x/text v0.3.3
## explicit; go 1.11
golang.org/x/text/encoding
golang.org/x/text/encoding/charmap
golang.org/x/text/encoding/htmlindex
Expand All @@ -41,4 +43,5 @@ golang.org/x/text/transform
## explicit
gopkg.in/DATA-DOG/go-sqlmock.v1
# gopkg.in/yaml.v2 v2.4.0
## explicit; go 1.15
gopkg.in/yaml.v2

0 comments on commit a173b58

Please sign in to comment.