Skip to content

Commit 44b4d85

Browse files
fix(deps): update all
1 parent c8780c9 commit 44b4d85

File tree

5 files changed

+146
-346
lines changed

5 files changed

+146
-346
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: circleci/golang:1.16
5+
- image: circleci/golang:1.17
66
working_directory: /go/src/moul.io/pipotron
77
environment:
88
GO111MODULE: "on"

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16-alpine as build
1+
FROM golang:1.23-alpine as build
22
WORKDIR /go/src/moul.io/pipotron
33
RUN apk add --no-cache git gcc musl-dev make
44
RUN go get -u github.com/gobuffalo/packr/v2/packr2

go.mod

+34-10
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,44 @@
11
module moul.io/pipotron
22

3-
go 1.12
3+
go 1.22.6
4+
5+
toolchain go1.23.4
46

57
require (
6-
github.com/Masterminds/goutils v1.1.0 // indirect
7-
github.com/Masterminds/semver v1.5.0 // indirect
88
github.com/Masterminds/sprig v2.22.0+incompatible
99
github.com/ajg/form v1.5.1
10-
github.com/aws/aws-lambda-go v1.25.0
11-
github.com/gobuffalo/packr/v2 v2.8.1
12-
github.com/gohugoio/hugo v0.85.0
13-
github.com/huandu/xstrings v1.2.1 // indirect
14-
github.com/imdario/mergo v0.3.8 // indirect
15-
github.com/mitchellh/copystructure v1.0.0 // indirect
16-
github.com/mitchellh/reflectwalk v1.0.1 // indirect
10+
github.com/aws/aws-lambda-go v1.47.0
11+
github.com/gobuffalo/packr/v2 v2.8.3
12+
github.com/gohugoio/hugo v0.139.5
1713
gopkg.in/yaml.v2 v2.4.0
1814
moul.io/godev v1.7.0
1915
moul.io/srand v1.6.1
2016
)
17+
18+
require (
19+
github.com/Masterminds/goutils v1.1.1 // indirect
20+
github.com/Masterminds/semver v1.5.0 // indirect
21+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
22+
github.com/gobuffalo/logger v1.0.6 // indirect
23+
github.com/gobuffalo/packd v1.0.1 // indirect
24+
github.com/gobwas/glob v0.2.3 // indirect
25+
github.com/gogo/protobuf v1.3.2 // indirect
26+
github.com/google/uuid v1.6.0 // indirect
27+
github.com/huandu/xstrings v1.3.2 // indirect
28+
github.com/imdario/mergo v0.3.16 // indirect
29+
github.com/karrick/godirwalk v1.16.1 // indirect
30+
github.com/markbates/errx v1.1.0 // indirect
31+
github.com/markbates/oncer v1.0.0 // indirect
32+
github.com/markbates/safe v1.0.1 // indirect
33+
github.com/mitchellh/copystructure v1.0.0 // indirect
34+
github.com/mitchellh/reflectwalk v1.0.1 // indirect
35+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
36+
github.com/sirupsen/logrus v1.9.3 // indirect
37+
github.com/spf13/cast v1.7.0 // indirect
38+
github.com/stretchr/testify v1.9.0 // indirect
39+
golang.org/x/crypto v0.29.0 // indirect
40+
golang.org/x/sys v0.27.0 // indirect
41+
golang.org/x/term v0.26.0 // indirect
42+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
43+
gopkg.in/yaml.v3 v3.0.1 // indirect
44+
)

0 commit comments

Comments
 (0)