Skip to content

Commit 0275b16

Browse files
authored
chore: Bump up Go to v1.15 (#82)
Signed-off-by: Daniel Pacak <pacak.daniel@gmail.com>
1 parent 9c9180a commit 0275b16

File tree

4 files changed

+144
-37
lines changed

4 files changed

+144
-37
lines changed

.github/workflows/build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Go
1313
uses: actions/setup-go@v1
1414
with:
15-
go-version: 1.14
15+
go-version: 1.15
1616
- name: Checkout code
1717
uses: actions/checkout@v2
1818
- name: Run unit tests
@@ -33,5 +33,5 @@ jobs:
3333
- name: Release snapshot
3434
uses: goreleaser/goreleaser-action@v2
3535
with:
36-
version: v0.148.0
36+
version: v0.155.1
3737
args: release --snapshot --skip-publish --rm-dist

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Setup Go
1212
uses: actions/setup-go@v1
1313
with:
14-
go-version: 1.14
14+
go-version: 1.15
1515
- name: Checkout code
1616
uses: actions/checkout@v2
1717
with:
@@ -30,7 +30,7 @@ jobs:
3030
- name: Release
3131
uses: goreleaser/goreleaser-action@v2
3232
with:
33-
version: v0.148.0
33+
version: v0.155.1
3434
args: release --rm-dist
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

go.mod

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
module github.com/aquasecurity/kubectl-who-can
22

3-
go 1.14
3+
go 1.15
44

55
require (
6-
github.com/spf13/cobra v1.0.0
6+
github.com/spf13/cobra v1.1.1
77
github.com/spf13/pflag v1.0.5
8-
github.com/stretchr/testify v1.6.0
9-
k8s.io/api v0.17.6
10-
k8s.io/apiextensions-apiserver v0.17.6
11-
k8s.io/apimachinery v0.17.6
12-
k8s.io/cli-runtime v0.17.6
13-
k8s.io/client-go v0.17.6
8+
github.com/stretchr/testify v1.7.0
9+
k8s.io/api v0.17.17
10+
k8s.io/apiextensions-apiserver v0.17.17
11+
k8s.io/apimachinery v0.17.17
12+
k8s.io/cli-runtime v0.17.17
13+
k8s.io/client-go v0.17.17
1414
k8s.io/klog v1.0.0
1515
)

0 commit comments

Comments
 (0)