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

Commit b40bf4e

Browse files
committed
#patch: bump deps
1 parent 8b0e49d commit b40bf4e

File tree

7 files changed

+133
-84
lines changed

7 files changed

+133
-84
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
- name: Unshallow
1515
run: git fetch --prune --unshallow
16-
- id: vars
17-
run: |
18-
echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g')
19-
echo "Using Go version ${{ steps.vars.outputs.go_version }}"
2016
- name: Install Go
21-
uses: actions/setup-go@v2
22-
with:
23-
go-version: ${{ steps.vars.outputs.go_version }}
17+
uses: actions/setup-go@v3
2418
- name: Run GoReleaser
25-
uses: goreleaser/goreleaser-action@v2
19+
uses: goreleaser/goreleaser-action@v3
2620
with:
2721
version: latest
2822
args: release --rm-dist

.github/workflows/tag.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
outputs:
1010
tag: ${{ steps.tagging.outputs.new_tag }}
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
with:
1414
fetch-depth: '0'
1515
- name: Bump version and push tag
16-
uses: anothrNick/github-tag-action@1.39.0
16+
uses: anothrNick/github-tag-action@1.61.0
1717
id: tagging
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yaml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,8 @@ jobs:
77
test:
88
runs-on: ubuntu-latest
99
steps:
10-
- id: vars
11-
run: |
12-
echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g')
13-
echo "Using Go version ${{ steps.vars.outputs.go_version }}"
1410
- name: Install Go
15-
uses: actions/setup-go@v2
16-
with:
17-
go-version: ${{ steps.vars.outputs.go_version }}
11+
uses: actions/setup-go@v3
1812
- name: Checkout code
1913
uses: actions/checkout@v2
2014
- name: Test
@@ -30,6 +24,6 @@ jobs:
3024
golangci-lint:
3125
runs-on: ubuntu-latest
3226
steps:
33-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
3428
- name: golangci-lint
35-
uses: golangci/golangci-lint-action@v2
29+
uses: golangci/golangci-lint-action@v3

go.mod

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,41 +5,42 @@ go 1.13
55
require (
66
github.com/ajg/form v1.5.1 // indirect
77
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
8+
github.com/bytedance/sonic v1.8.2 // indirect
9+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
810
github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072 // indirect
911
github.com/fatih/structs v1.1.0 // indirect
1012
github.com/gavv/httpexpect v2.0.0+incompatible
11-
github.com/gin-gonic/gin v1.8.1
12-
github.com/go-openapi/spec v0.20.7 // indirect
13-
github.com/go-openapi/swag v0.22.3 // indirect
14-
github.com/go-playground/validator/v10 v10.11.1 // indirect
15-
github.com/goccy/go-json v0.9.11 // indirect
13+
github.com/gin-gonic/gin v1.9.0
14+
github.com/go-openapi/jsonreference v0.20.2 // indirect
15+
github.com/go-openapi/spec v0.20.8 // indirect
1616
github.com/google/go-querystring v1.0.0 // indirect
1717
github.com/gorilla/websocket v1.4.1 // indirect
1818
github.com/imkira/go-interpol v1.1.0 // indirect
1919
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
20+
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
21+
github.com/leodido/go-urn v1.2.2 // indirect
2022
github.com/mattn/go-colorable v0.1.6 // indirect
21-
github.com/mattn/go-isatty v0.0.16 // indirect
2223
github.com/moul/http2curl v1.0.0 // indirect
2324
github.com/onsi/ginkgo v1.12.0 // indirect
2425
github.com/onsi/gomega v1.9.0 // indirect
25-
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
26-
github.com/prometheus/client_golang v1.13.0 // indirect
26+
github.com/prometheus/common v0.40.0 // indirect
27+
github.com/prometheus/procfs v0.9.0 // indirect
2728
github.com/sergi/go-diff v1.0.0 // indirect
2829
github.com/sirupsen/logrus v1.9.0
29-
github.com/stretchr/testify v1.8.0
30-
github.com/swaggo/files v0.0.0-20220728132757-551d4a08d97a
30+
github.com/stretchr/testify v1.8.2
31+
github.com/swaggo/files v1.0.0
3132
github.com/swaggo/gin-swagger v1.5.3
32-
github.com/swaggo/swag v1.8.5
33+
github.com/swaggo/swag v1.8.10
34+
github.com/ugorji/go/codec v1.2.10 // indirect
3335
github.com/valyala/fasthttp v1.7.0 // indirect
3436
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
3537
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
3638
github.com/yudai/gojsondiff v1.0.0 // indirect
3739
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
3840
github.com/yudai/pp v2.0.1+incompatible // indirect
3941
github.com/zsais/go-gin-prometheus v0.1.0
40-
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect
41-
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
42-
golang.org/x/sys v0.0.0-20220915200043-7b5979e65e41 // indirect
43-
golang.org/x/tools v0.1.12 // indirect
42+
golang.org/x/arch v0.2.0 // indirect
43+
golang.org/x/crypto v0.6.0 // indirect
44+
golang.org/x/tools v0.6.0 // indirect
4445
gopkg.in/yaml.v2 v2.4.0
4546
)

0 commit comments

Comments
 (0)