Skip to content

Commit 66ab78b

Browse files
committed
chore: update go version, gorelease, gha workflows
1 parent 3ceaf01 commit 66ab78b

7 files changed

Lines changed: 69 additions & 102 deletions

File tree

.github/workflows/goreleaser.yml

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -8,49 +8,42 @@ jobs:
88
runs-on: ubuntu-latest
99
environment: release
1010
steps:
11-
- name: setup-go
12-
uses: actions/setup-go@v3
13-
with:
14-
go-version: '1.20'
15-
1611
- name: Checkout
17-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1813
with:
1914
fetch-depth: 0
2015

16+
- name: setup-go
17+
uses: actions/setup-go@v4
18+
with:
19+
go-version-file: 'go.mod'
20+
cache-dependency-path: 'go.sum'
21+
2122
- name: Set up QEMU
22-
uses: docker/setup-qemu-action@v2
23+
uses: docker/setup-qemu-action@v3
2324

2425
- name: Set up Docker Buildx
2526
id: buildx
26-
uses: docker/setup-buildx-action@v2
27+
uses: docker/setup-buildx-action@v3
2728

2829
- name: Log in to the GitHub Container registry
29-
uses: docker/login-action@v2
30+
uses: docker/login-action@v3
3031
with:
3132
registry: ghcr.io
3233
username: ${{ github.actor }}
3334
password: ${{ secrets.GITHUB_TOKEN }}
3435

3536
- name: Log in to the Docker Hub
36-
uses: docker/login-action@v2
37+
uses: docker/login-action@v3
3738
with:
3839
username: ${{ secrets.DOCKERHUB_USERNAME }}
3940
password: ${{ secrets.DOCKERHUB_TOKEN }}
4041

41-
- uses: actions/cache@v3
42-
with:
43-
path: |
44-
~/.cache/go-build
45-
~/go/pkg/mod
46-
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
47-
restore-keys: |
48-
${{ runner.os }}-go-
49-
- if: steps.cache.outputs.cache-hit != 'true'
42+
- if: steps.setup-go.outputs.cache-hit != 'true'
5043
run: go mod download
5144

5245
- name: goreleaser
53-
uses: goreleaser/goreleaser-action@v4
46+
uses: goreleaser/goreleaser-action@v6
5447
with:
5548
version: latest
5649
args: release --clean

.github/workflows/test.yml

Lines changed: 21 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -4,54 +4,41 @@ name: Tests
44
# This GitHub action runs your tests for each pull request and push.
55
# Optionally, you can turn it on using a schedule for regular testing.
66
on:
7-
pull_request:
8-
paths-ignore:
9-
- 'README.md'
7+
# pull_request:
8+
# paths-ignore:
9+
# - "README.md"
1010
push:
1111
paths-ignore:
12-
- 'README.md'
12+
- "README.md"
1313

1414
# Testing only needs permissions to read the repository contents.
1515
permissions:
1616
contents: read
1717

18-
# Default values to simplify job configurations below.
19-
env:
20-
# Go language version to use for building. This value should also be updated
21-
# in the release workflow if changed.
22-
GO_VERSION: '1.20'
23-
2418
jobs:
2519
# Build and test
2620
test:
2721
name: Test golang
2822
runs-on: ubuntu-latest
2923
timeout-minutes: 5
3024
steps:
31-
- uses: actions/setup-go@v3
32-
with:
33-
go-version: ${{ env.GO_VERSION }}
34-
3525
- name: Checkout
36-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
3727
with:
3828
fetch-depth: 0
3929

40-
- uses: actions/cache@v3
30+
- name: setup-go
31+
uses: actions/setup-go@v4
4132
with:
42-
path: |
43-
~/.cache/go-build
44-
~/go/pkg/mod
45-
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
46-
restore-keys: |
47-
${{ runner.os }}-go-
48-
- if: steps.cache.outputs.cache-hit != 'true'
33+
go-version-file: "go.mod"
34+
cache-dependency-path: "go.sum"
35+
36+
- if: steps.setup-go.outputs.cache-hit != 'true'
4937
run: go mod download
5038

5139
- run: go build -v .
5240
- run: go test -v -cover ./...
5341

54-
5542
# test goreleaser build
5643
goreleaser-snapshot:
5744
name: Test goreleaser
@@ -60,35 +47,29 @@ jobs:
6047
- test
6148
timeout-minutes: 10
6249
steps:
63-
- uses: actions/setup-go@v3
64-
with:
65-
go-version: ${{ env.GO_VERSION }}
66-
6750
- name: Checkout
68-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
6952
with:
7053
fetch-depth: 0
7154

72-
- uses: actions/cache@v3
55+
- name: setup-go
56+
uses: actions/setup-go@v4
7357
with:
74-
path: |
75-
~/.cache/go-build
76-
~/go/pkg/mod
77-
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
78-
restore-keys: |
79-
${{ runner.os }}-go-
80-
- if: steps.cache.outputs.cache-hit != 'true'
58+
go-version-file: "go.mod"
59+
cache-dependency-path: "go.sum"
60+
61+
- if: steps.setup-go.outputs.cache-hit != 'true'
8162
run: go mod download
8263

8364
- name: Set up QEMU
84-
uses: docker/setup-qemu-action@v2
65+
uses: docker/setup-qemu-action@v3
8566

8667
- name: Set up Docker Buildx
8768
id: buildx
88-
uses: docker/setup-buildx-action@v2
69+
uses: docker/setup-buildx-action@v3
8970

9071
- name: goreleaser
91-
uses: goreleaser/goreleaser-action@v4
72+
uses: goreleaser/goreleaser-action@v6
9273
with:
9374
version: latest
9475
args: release --snapshot --clean

.goreleaser.yml

Lines changed: 18 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -16,44 +16,24 @@ builds:
1616

1717
main: main.go
1818

19-
dockers:
20-
- image_templates:
21-
- "{{ .Env.DOCKER_HUB_REPO }}:{{ .Version }}-amd64"
22-
- "{{ .Env.DOCKER_GITHUB_REPO }}:{{ .Version }}-amd64"
23-
use: buildx
24-
dockerfile: Dockerfile.goreleaser
25-
build_flag_templates:
26-
- "--platform=linux/amd64"
27-
28-
- image_templates:
29-
- "{{ .Env.DOCKER_HUB_REPO }}:{{ .Version }}-arm64"
30-
- "{{ .Env.DOCKER_GITHUB_REPO }}:{{ .Version }}-arm64"
31-
use: buildx
32-
goarch: arm64
33-
dockerfile: Dockerfile.goreleaser
34-
build_flag_templates:
35-
- "--platform=linux/arm64"
36-
37-
docker_manifests:
38-
# docker hub
39-
- name_template: "{{ .Env.DOCKER_HUB_REPO }}:latest"
40-
image_templates:
41-
- "{{ .Env.DOCKER_HUB_REPO }}:{{ .Version }}-amd64"
42-
- "{{ .Env.DOCKER_HUB_REPO }}:{{ .Version }}-arm64"
43-
- name_template: "{{ .Env.DOCKER_HUB_REPO }}:{{ .Version }}"
44-
image_templates:
45-
- "{{ .Env.DOCKER_HUB_REPO }}:{{ .Version }}-amd64"
46-
- "{{ .Env.DOCKER_HUB_REPO }}:{{ .Version }}-arm64"
47-
48-
# github container
49-
- name_template: "{{ .Env.DOCKER_GITHUB_REPO }}:latest"
50-
image_templates:
51-
- "{{ .Env.DOCKER_GITHUB_REPO }}:{{ .Version }}-amd64"
52-
- "{{ .Env.DOCKER_GITHUB_REPO }}:{{ .Version }}-arm64"
53-
- name_template: "{{ .Env.DOCKER_GITHUB_REPO }}:{{ .Version }}"
54-
image_templates:
55-
- "{{ .Env.DOCKER_GITHUB_REPO }}:{{ .Version }}-amd64"
56-
- "{{ .Env.DOCKER_GITHUB_REPO }}:{{ .Version }}-arm64"
19+
dockers_v2:
20+
- dockerfile: Dockerfile.goreleaser
21+
images:
22+
- "{{ .Env.DOCKER_HUB_REPO }}"
23+
- "{{ .Env.DOCKER_GITHUB_REPO }}"
24+
tags:
25+
- "{{ .Version }}"
26+
- "latest"
27+
labels:
28+
"org.opencontainers.image.description": "CertJunkie"
29+
"org.opencontainers.image.created": "{{.Date}}"
30+
"org.opencontainers.image.name": "{{.ProjectName}}"
31+
"org.opencontainers.image.revision": "{{.FullCommit}}"
32+
"org.opencontainers.image.version": "{{.Version}}"
33+
"org.opencontainers.image.source": "{{.GitURL}}"
34+
platforms:
35+
- linux/amd64
36+
- linux/arm64
5737

5838
checksum:
5939
name_template: "checksums.txt"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.20 as builder
1+
FROM golang:1.25 AS builder
22

33
WORKDIR /go/src/github.com/project0/certjunkie/
44

Dockerfile.goreleaser

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
FROM golang:1.20-alpine as builder
1+
FROM golang:1.25-alpine AS builder
22

33
FROM scratch
4+
ARG TARGETPLATFORM
45

56
WORKDIR /root/
67
COPY --from=builder /etc/ssl/certs /etc/ssl/certs
78

8-
COPY certjunkie /certjunkie
9+
COPY $TARGETPLATFORM/certjunkie /certjunkie
910
ENTRYPOINT ["/certjunkie"]
1011

1112
CMD [ "server" ]

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/project0/certjunkie
22

3-
go 1.20
3+
go 1.25
44

55
require (
66
github.com/docker/libkv v0.2.1

go.sum

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2Aawl
1414
cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=
1515
cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk=
1616
cloud.google.com/go/longrunning v0.4.1 h1:v+yFJOfKC3yZdY6ZUI933pIYdhyhV8S3NpWrXWmg7jM=
17+
cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo=
1718
cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I=
1819
cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw=
1920
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
@@ -131,12 +132,14 @@ github.com/exoscale/egoscale v0.97.0 h1:9DRSdFxepQrm/BOX/tvMXmfeN7d1row9N/+D9wrF
131132
github.com/exoscale/egoscale v0.97.0/go.mod h1:BAb9p4rmyU+Wl400CJZO5270H2sXtdsZjLcm5xMKkz4=
132133
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
133134
github.com/fatih/color v1.13.0 h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w=
135+
github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk=
134136
github.com/fatih/structs v1.1.0 h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=
135137
github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M=
136138
github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
137139
github.com/felixge/httpsnoop v1.0.3 h1:s/nj+GCswXYzN5v2DpNMuMQYe+0DDwt5WVCU6CWBdXk=
138140
github.com/felixge/httpsnoop v1.0.3/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
139141
github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE=
142+
github.com/frankban/quicktest v1.14.3/go.mod h1:mgiwOwqx65TmIk1wJ6Q7wvnVMocbUorkibMOrVTHZps=
140143
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
141144
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
142145
github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU=
@@ -161,6 +164,7 @@ github.com/go-resty/resty/v2 v2.7.0/go.mod h1:9PWDzw47qPphMRFfhsyk0NnSgvluHcljSM
161164
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
162165
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE=
163166
github.com/gobs/pretty v0.0.0-20180724170744-09732c25a95b h1:/vQ+oYKu+JoyaMPDsv5FzwuL2wwWBgBbtj/YLCi4LuA=
167+
github.com/gobs/pretty v0.0.0-20180724170744-09732c25a95b/go.mod h1:Xo4aNUOrJnVruqWQJBtW6+bTBDTniY8yZum5rF3b5jw=
164168
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
165169
github.com/gofrs/uuid v4.4.0+incompatible h1:3qXRTX8/NbyulANqlc0lchS1gqAVxRgsuW1YrTJupqA=
166170
github.com/gofrs/uuid v4.4.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
@@ -207,6 +211,7 @@ github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
207211
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
208212
github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE=
209213
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
214+
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
210215
github.com/google/go-github/v32 v32.1.0/go.mod h1:rIEpZD9CTDQwDK9GDrtMTycQNA4JU3qBsCizh3q2WCI=
211216
github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck=
212217
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
@@ -255,6 +260,7 @@ github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9n
255260
github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48=
256261
github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ=
257262
github.com/hashicorp/go-hclog v1.2.0 h1:La19f8d7WIlm4ogzNHB0JGqs5AUDAZ2UfCY4sJXcJdM=
263+
github.com/hashicorp/go-hclog v1.2.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ=
258264
github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60=
259265
github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM=
260266
github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk=
@@ -312,6 +318,7 @@ github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg=
312318
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
313319
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
314320
github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0=
321+
github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk=
315322
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
316323
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
317324
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
@@ -454,6 +461,7 @@ github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6So
454461
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
455462
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
456463
github.com/rogpeppe/go-internal v1.8.1 h1:geMPLpDpQOgVyCg5z5GoRwLHepNdb71NXb67XFkP+Eg=
464+
github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o=
457465
github.com/rs/xid v1.4.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg=
458466
github.com/rs/zerolog v1.29.0 h1:Zes4hju04hjbvkVkOhdl2HpZa+0PmVwigmo8XoORE5w=
459467
github.com/rs/zerolog v1.29.0/go.mod h1:NILgTygv/Uej1ra5XxGf82ZFSLk58MFGAUS2o6usyD0=
@@ -479,10 +487,12 @@ github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0
479487
github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
480488
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
481489
github.com/smartystreets/assertions v1.0.1 h1:voD4ITNjPL5jjBfgR/r8fPIIBrliWrWHeiJApdr3r4w=
490+
github.com/smartystreets/assertions v1.0.1/go.mod h1:kHHU4qYBaI3q23Pp3VPrmWhuIUrLW/7eUrw0BU5VaoM=
482491
github.com/smartystreets/go-aws-auth v0.0.0-20180515143844-0c1422d1fdb9 h1:hp2CYQUINdZMHdvTdXtPOY2ainKl4IoMcpAXEf2xj3Q=
483492
github.com/smartystreets/go-aws-auth v0.0.0-20180515143844-0c1422d1fdb9/go.mod h1:SnhjPscd9TpLiy1LpzGSKh3bXCfxxXuqd9xmQJy3slM=
484493
github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=
485494
github.com/smartystreets/gunit v1.0.4 h1:tpTjnuH7MLlqhoD21vRoMZbMIi5GmBsAJDFyF67GhZA=
495+
github.com/smartystreets/gunit v1.0.4/go.mod h1:EH5qMBab2UclzXUcpR8b93eHsIlp9u+pDQIRp5DZNzQ=
486496
github.com/softlayer/softlayer-go v1.1.2 h1:rUSSGCyaxymvTOsaFjwr+cGxA8muw3xg2LSrIMNcN/c=
487497
github.com/softlayer/softlayer-go v1.1.2/go.mod h1:hvAbzGH4LRXA6yXY8BNx99yoqZ7urfDdtl9mvBf0G+g=
488498
github.com/softlayer/xmlrpc v0.0.0-20200409220501-5f089df7cb7e h1:3OgWYFw7jxCZPcvAg+4R8A50GZ+CCkARF10lxu2qDsQ=
@@ -708,6 +718,7 @@ golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuX
708718
golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
709719
golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc=
710720
golang.org/x/term v0.6.0 h1:clScbb1cHjoCkyRbWwBEUZ5H/tIFu5TAXIqaZD0Gcjw=
721+
golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U=
711722
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
712723
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
713724
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
@@ -812,6 +823,7 @@ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8
812823
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
813824
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
814825
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
826+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
815827
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
816828
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
817829
gopkg.in/h2non/gock.v1 v1.0.15 h1:SzLqcIlb/fDfg7UvukMpNcWsu7sI5tWwL+KCATZqks0=

0 commit comments

Comments
 (0)