Skip to content
This repository was archived by the owner on Mar 16, 2024. It is now read-only.

Commit 48ca473

Browse files
authored
Merge pull request #56 from cjellick/updates
Update golang and deps
2 parents ec3fbd6 + a4b9178 commit 48ca473

File tree

5 files changed

+77
-70
lines changed

5 files changed

+77
-70
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fetch-depth: 0
1515
- uses: actions/setup-go@v3
1616
with:
17-
go-version: 1.18
17+
go-version: 1.19
1818
- run: make setup-ci-env
1919
- run: make validate-ci
2020
- run: make validate

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.18 AS build
1+
FROM golang:1.19 AS build
22
COPY / /src
33
WORKDIR /src
44
ARG TAG="v0.0.0-dev"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ image:
55
docker build .
66

77
setup-ci-env:
8-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $$(go env GOPATH)/bin v1.46.2
8+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $$(go env GOPATH)/bin v1.50.0
99

1010
validate-ci:
1111
go generate

go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
module github.com/acorn-io/acorn-dns
22

3-
go 1.18
3+
go 1.19
44

55
require (
6-
github.com/aws/aws-sdk-go v1.44.90
7-
github.com/glebarez/sqlite v1.4.6
6+
github.com/aws/aws-sdk-go v1.44.114
7+
github.com/glebarez/sqlite v1.5.0
88
github.com/gorilla/handlers v1.5.1
99
github.com/gorilla/mux v1.8.0
1010
github.com/rancher/wrangler v1.0.0
1111
github.com/sirupsen/logrus v1.9.0
12-
github.com/urfave/cli/v2 v2.11.1
13-
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
14-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e
15-
gorm.io/driver/mysql v1.3.5
16-
gorm.io/gorm v1.23.8
17-
k8s.io/apimachinery v0.24.3
12+
github.com/urfave/cli/v2 v2.19.2
13+
golang.org/x/crypto v0.0.0-20221010152910-d6f0a8c073c2
14+
golang.org/x/exp v0.0.0-20221010202428-3a778c567f61
15+
gorm.io/driver/mysql v1.4.1
16+
gorm.io/gorm v1.24.0
17+
k8s.io/apimachinery v0.25.2
1818
)
1919

2020
require (
2121
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
2222
github.com/felixge/httpsnoop v1.0.3 // indirect
23-
github.com/glebarez/go-sqlite v1.17.3 // indirect
23+
github.com/glebarez/go-sqlite v1.19.1 // indirect
2424
github.com/go-logr/logr v1.2.3 // indirect
2525
github.com/go-sql-driver/mysql v1.6.0 // indirect
2626
github.com/google/uuid v1.3.0 // indirect
2727
github.com/jinzhu/inflection v1.0.0 // indirect
2828
github.com/jinzhu/now v1.1.5 // indirect
2929
github.com/jmespath/go-jmespath v0.4.0 // indirect
30-
github.com/mattn/go-isatty v0.0.14 // indirect
31-
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
30+
github.com/mattn/go-isatty v0.0.16 // indirect
31+
github.com/remyoudompheng/bigfft v0.0.0-20220927061507-ef77025ab5aa // indirect
3232
github.com/russross/blackfriday/v2 v2.1.0 // indirect
3333
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
34-
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
35-
k8s.io/klog/v2 v2.70.1 // indirect
36-
k8s.io/utils v0.0.0-20220725171434-9bab9ef40391 // indirect
37-
modernc.org/libc v1.16.17 // indirect
38-
modernc.org/mathutil v1.4.1 // indirect
39-
modernc.org/memory v1.1.1 // indirect
40-
modernc.org/sqlite v1.17.3 // indirect
34+
golang.org/x/sys v0.0.0-20221010170243-090e33056c14 // indirect
35+
k8s.io/klog/v2 v2.80.1 // indirect
36+
k8s.io/utils v0.0.0-20220922133306-665eaaec4324 // indirect
37+
modernc.org/libc v1.20.3 // indirect
38+
modernc.org/mathutil v1.5.0 // indirect
39+
modernc.org/memory v1.4.0 // indirect
40+
modernc.org/sqlite v1.19.1 // indirect
4141
)

0 commit comments

Comments
 (0)