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

Commit

Permalink
bump logrus, go 1.17, enable M1 mac support (#7)
Browse files Browse the repository at this point in the history
* bump logrus, enable M1 mac support
* ci: bump golang to 1.17, add darwin/arm64 build
* bump go version in go.mod, run go mod tidy
  • Loading branch information
iameli authored Jun 22, 2022
1 parent 8dfa559 commit 9decf29
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 145 deletions.
4 changes: 2 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: default

steps:
- name: test
image: golang:1.12
image: golang:1.17
environment:
GO111MODULE: on
commands:
Expand All @@ -13,7 +13,7 @@ steps:
path: /go

- name: build
image: golang:1.12
image: golang:1.17
environment:
GO111MODULE: on
commands:
Expand Down
28 changes: 19 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
module github.com/drone-runners/drone-runner-exec

go 1.12
go 1.17

require (
github.com/99designs/basicauth-go v0.0.0-20160802081356-2a93ba0f464d
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc // indirect
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect
github.com/bmatcuk/doublestar v1.1.1
github.com/buildkite/yaml v2.1.0+incompatible
github.com/dchest/uniuri v0.0.0-20160212164326-8902c56451e9
github.com/drone/drone-git v1.0.1-0.20190419151808-5b0a12bcb36c
github.com/drone/drone-go v1.0.5-0.20190504210458-4d6116b897ba
github.com/drone/envsubst v1.0.2
github.com/drone/runner-go v1.3.1
Expand All @@ -24,10 +19,25 @@ require (
github.com/mattn/go-isatty v0.0.8
github.com/natessilva/dag v0.0.0-20180124060714-7194b8dcc5c4
github.com/orandin/lumberjackrus v1.0.1
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be // indirect
github.com/sirupsen/logrus v1.4.2
github.com/sirupsen/logrus v1.8.1
golang.org/x/sync v0.0.0-20190423024810-112230192c58
gopkg.in/alecthomas/kingpin.v2 v2.2.6
)

require (
github.com/99designs/basicauth-go v0.0.0-20160802081356-2a93ba0f464d // indirect
github.com/99designs/httpsignatures-go v0.0.0-20170731043157-88528bf4ca7e // indirect
github.com/BurntSushi/toml v1.1.0 // indirect
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc // indirect
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect
github.com/bmatcuk/doublestar v1.1.1 // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be // indirect
golang.org/x/crypto v0.0.0-20190621222207-cc06ce4a13d4 // indirect
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/text v0.3.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/yaml.v2 v2.2.2
)
Loading

0 comments on commit 9decf29

Please sign in to comment.