Skip to content

Commit

Permalink
Update to Go 1.16
Browse files Browse the repository at this point in the history
Fixes build failing due to goconvey dependency change
  • Loading branch information
szh committed Oct 28, 2021
1 parent 67658c7 commit 78c8cc2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed
- The project Golang version is updated from the end-of-life v1.15 to version v1.16. [cyberark/conjur-authn-k8s-client#416](https://github.com/cyberark/conjur-authn-k8s-client/pull/416)

## [0.22.0] - 2021-09-17
### Added
- Introduces the `conjur-config-cluster-prep.yaml` and `conjur-config-namespace-prep.yaml` raw Kubernetes manifests generated from their corresponding Helm charts. These manifests provide an alternative method of configuring a Kubernetes cluster for the deployment of Conjur-authenticated applications for users unable to use Helm in their environment.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM goboring/golang:1.15.6b5 as authenticator-client-builder
FROM goboring/golang:1.16.7b7 as authenticator-client-builder
MAINTAINER CyberArk Software Ltd.

ENV GOOS=linux \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.junit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15-alpine
FROM golang:1.16-alpine
MAINTAINER CyberArk Software Ltd.
LABEL id="conjur-authn-k8s-client-junit-processor"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15-alpine
FROM golang:1.16-alpine
MAINTAINER CyberArk Software Ltd.
LABEL id="conjur-authn-k8s-client-test-runner"

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cyberark/conjur-authn-k8s-client

go 1.15
go 1.16

require (
github.com/cenkalti/backoff v2.2.1+incompatible
Expand Down
1 change: 0 additions & 1 deletion pkg/authenticator/authenticator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import (
"path/filepath"
"testing"

. "github.com/smartystreets/goconvey/convey"
"github.com/stretchr/testify/assert"

"github.com/cyberark/conjur-authn-k8s-client/pkg/access_token/memory"
Expand Down

0 comments on commit 78c8cc2

Please sign in to comment.