diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2386f22..173e89f 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - go: [1.14] + go: [1.16] name: ${{ matrix.os }} @ Go ${{ matrix.go }} runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f41f75b..c73ef28 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.14 + go-version: 1.16 - name: Login to DockerHub uses: docker/login-action@v1 with: diff --git a/.goreleaser.yml b/.goreleaser.yml index 7b39866..62cbd81 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -69,7 +69,7 @@ dockers: - "--platform=linux/amd64" # For multiple architectures - use_buildx: true + use: buildx # If your Dockerfile copies files other than the binary itself, # you should list them here as well. @@ -107,7 +107,7 @@ dockers: - "--platform=linux/arm64" # For multiple architectures - use_buildx: true + use: buildx # If your Dockerfile copies files other than the binary itself, # you should list them here as well. diff --git a/Dockerfile b/Dockerfile index eb996d4..6154cd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION="1.14" +ARG GO_VERSION="1.16" #--------------------------------------------# #--------Build KSOPS and Kustomize-----------# @@ -30,4 +30,4 @@ RUN make install # Install kustomize via Go RUN make kustomize -CMD ["kustomize", "version"] \ No newline at end of file +CMD ["kustomize", "version"] diff --git a/go.mod b/go.mod index 9871c1e..b4e1afc 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/viaduct-ai/kustomize-sops -go 1.14 +go 1.16 require ( cloud.google.com/go v0.53.0 // indirect diff --git a/go.sum b/go.sum index 986f611..96387a1 100644 --- a/go.sum +++ b/go.sum @@ -208,7 +208,6 @@ github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORR github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gotestyourself/gotestyourself v2.2.0+incompatible h1:AQwinXlbQR2HvPjQZOmDhRqsv5mZf+Jb1RnSLxcqZcI= github.com/gotestyourself/gotestyourself v2.2.0+incompatible/go.mod h1:zZKM6oeNM8k+FRljX1mnzVYeS8wiGgQyvST1/GafPbY= github.com/goware/prefixer v0.0.0-20160118172347-395022866408 h1:Y9iQJfEqnN3/Nce9cOegemcy/9Ai5k3huT6E80F3zaw= github.com/goware/prefixer v0.0.0-20160118172347-395022866408/go.mod h1:PE1ycukgRPJ7bJ9a1fdfQ9j8i/cEcRAoLZzbxYpNB/s= @@ -646,7 +645,6 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107172259-749611fa9fcc h1:XANm4xAMEQhRdWKqaL0qmhGDv7RuobwCO97TIlktaQE= gopkg.in/yaml.v3 v3.0.0-20210107172259-749611fa9fcc/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=