Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
honwen committed Nov 13, 2023
1 parent fc48816 commit 17ebc00
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 638 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: actions/setup-go@v3
with:
go-version: '1.20.6'
go-version: '1.21.4'

- name: Prepare environment
run: |-
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ LABEL MAINTAINER honwen <https://github.com/honwen>
# /usr/bin/aliyun-ddns-cli
RUN mkdir -p /usr/bin/ \
&& cd /usr/bin/ \
&& curl -skSL $(curl -skSL 'https://api.github.com/repos/honwen/aliyun-ddns-cli/releases/latest' | sed -n '/url.*linux-amd64/{s/.*\(https:.*.gz\).*/\1/p}') | tar --strip-components=1 -zx linux-amd64/aliddns \
&& curl -skSL $( \
curl -skSL 'https://api.github.com/repos/honwen/aliyun-ddns-cli/releases/latest' | \
sed -n '/url.*linux-amd64/{s/.*\(https:.*.gz\).*/\1/p}'\
) | tar --strip-components=1 -zx linux-amd64/aliddns \
&& ln -sf aliddns aliyun-ddns-cli \
&& aliyun-ddns-cli -v

Expand Down
48 changes: 22 additions & 26 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,43 +5,39 @@ go 1.20
require (
// locked before tracing/logging https://github.com/denverdino/aliyungo/commits/master/go.mod
github.com/denverdino/aliyungo v0.0.0-20220321085828-46dabbd9e212
github.com/honwen/golibs v0.4.7
github.com/honwen/ip2loc v0.3.0
github.com/honwen/golibs v0.5.0
github.com/honwen/ip2loc v0.3.1
github.com/urfave/cli v1.22.14
github.com/ysmood/got v0.34.2
github.com/ysmood/got v0.37.2
)

require (
github.com/AdguardTeam/golibs v0.13.6 // indirect
github.com/AdguardTeam/golibs v0.17.2 // indirect
github.com/PuerkitoBio/goquery v1.8.1 // indirect
github.com/Workiva/go-datastructures v1.1.0 // indirect
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
github.com/aead/poly1305 v0.0.0-20180717145839-3fee0db0b635 // indirect
github.com/ameshkov/dnscrypt/v2 v2.2.5 // indirect
github.com/ameshkov/dnscrypt/v2 v2.2.7 // indirect
github.com/ameshkov/dnsstamps v1.0.3 // indirect
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/google/pprof v0.0.0-20221219190121-3cb0bae90811 // indirect
github.com/miekg/dns v1.1.54 // indirect
github.com/mr-karan/doggo v0.5.6 // indirect
github.com/onsi/ginkgo/v2 v2.6.1 // indirect
github.com/quic-go/qtls-go1-18 v0.2.0 // indirect
github.com/quic-go/qtls-go1-19 v0.2.0 // indirect
github.com/quic-go/qtls-go1-20 v0.1.0 // indirect
github.com/quic-go/quic-go v0.32.0 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/google/pprof v0.0.0-20230926050212-f7f687d19a98 // indirect
github.com/miekg/dns v1.1.56 // indirect
github.com/mr-karan/doggo v0.5.8-0.20231106042340-371f014c79e3 // indirect
github.com/onsi/ginkgo/v2 v2.13.0 // indirect
github.com/quic-go/qtls-go1-20 v0.4.1 // indirect
github.com/quic-go/quic-go v0.40.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/ysmood/gop v0.0.2 // indirect
golang.org/x/crypto v0.11.0 // indirect
golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 // indirect
golang.org/x/mod v0.11.0 // indirect
golang.org/x/net v0.12.0 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/text v0.11.0 // indirect
golang.org/x/tools v0.6.0 // indirect
github.com/ysmood/gop v0.2.0 // indirect
go.uber.org/mock v0.3.0 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/mod v0.13.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/tools v0.14.0 // indirect
)

replace github.com/mr-karan/doggo => github.com/honwen/doggo v0.0.0-20230203023054-7db5c2144fa4
Loading

0 comments on commit 17ebc00

Please sign in to comment.