Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
Use Go 1.16, update deps & build Apple M1 binaries (#602)
Browse files Browse the repository at this point in the history
* Use Go 1.16 for builds

* Update dependencies

* Build binaries for Apple M1 devices
  • Loading branch information
der-eismann authored Feb 17, 2021
1 parent 0287f7d commit 3b710fe
Show file tree
Hide file tree
Showing 6 changed files with 207 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.15'
go-version: '1.16'
- name: Setup tools
run: |
go get golang.org/x/lint/golint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.15'
go-version: '1.16'
- name: Checkout code
uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Source: https://github.com/rebuy-de/golang-template

FROM golang:1.15-alpine as builder
FROM golang:1.16-alpine as builder

RUN apk add --no-cache git make curl openssl

Expand Down
14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module github.com/rebuy-de/aws-nuke

go 1.15
go 1.16

require (
github.com/aws/aws-sdk-go v1.34.12
github.com/fatih/color v1.9.0
github.com/aws/aws-sdk-go v1.37.12
github.com/fatih/color v1.10.0
github.com/golang/mock v1.4.4
github.com/mb0/glob v0.0.0-20160210091149-1eb79d2de6c4
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.6.0
github.com/spf13/cobra v1.0.0
github.com/sirupsen/logrus v1.7.1
github.com/spf13/cobra v1.1.3
github.com/stretchr/testify v1.6.1
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
gopkg.in/yaml.v2 v2.3.0
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
gopkg.in/yaml.v2 v2.4.0
)
Loading

0 comments on commit 3b710fe

Please sign in to comment.