Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
8b79ad1
chore(deps): update go to 1.23 (#7)
cultureamp-renovate[bot] Dec 7, 2024
f728ebe
chore(deps): update dependency golang to v1.23.2 (#15)
cultureamp-renovate[bot] Dec 10, 2024
c42b468
Merge main into renovate/rollup
cultureamp-renovate[bot] Dec 13, 2024
e67c6ac
chore(deps): update public.ecr.aws/docker/library/golang docker tag t…
cultureamp-renovate[bot] Dec 13, 2024
415030e
chore(deps): update buildkite/plugin-tester docker tag to v4.1.1 (#6)
cultureamp-renovate[bot] Dec 13, 2024
040903a
chore(deps): update module golang.org/x/sys to v0.28.0 (#9)
cultureamp-renovate[bot] Dec 13, 2024
b9ff7fe
chore(deps): update module github.com/stretchr/testify to v1.10.0 (#8)
cultureamp-renovate[bot] Dec 13, 2024
2378d9d
Merge main into renovate/rollup
cultureamp-renovate[bot] Dec 20, 2024
8702bd0
chore(deps): update dependency golangci-lint to v1.63.4 (#18)
cultureamp-renovate[bot] Jan 4, 2025
d24dc07
chore(deps): update module golang.org/x/sys to v0.29.0 (#20)
cultureamp-renovate[bot] Jan 11, 2025
05b24bc
chore(deps): update go to v1.23.3 (#19)
cultureamp-renovate[bot] Jan 17, 2025
0a645ab
chore(deps): update go to v1.23.5 (#21)
cultureamp-renovate[bot] Jan 17, 2025
44ac548
chore(deps): update module golang.org/x/sys to v0.30.0 (#22)
cultureamp-renovate[bot] Feb 7, 2025
2044581
chore(deps): update dependency golangci-lint to v1.64.5 (#23)
cultureamp-renovate[bot] Feb 14, 2025
a9a29e2
chore(deps): update public.ecr.aws/docker/library/golang docker tag t…
cultureamp-renovate[bot] Feb 14, 2025
c803f84
chore(deps): update dependency golangci-lint to v1.64.6 (#25)
cultureamp-renovate[bot] Mar 7, 2025
cc15036
chore(deps): update module golang.org/x/sys to v0.31.0 (#26)
cultureamp-renovate[bot] Mar 7, 2025
1428efe
chore(deps): update dependency golangci-lint to v1.64.7 (#27)
cultureamp-renovate[bot] Mar 14, 2025
9cf697d
chore(deps): update dependency golangci-lint to v1.64.8 (#28)
cultureamp-renovate[bot] Mar 22, 2025
ff8c4a6
chore(deps): update dependency go to v1.23.6 (#31)
cultureamp-renovate[bot] Apr 5, 2025
a7c2fb8
chore(deps): update module golang.org/x/sys to v0.32.0 (#32)
cultureamp-renovate[bot] Apr 5, 2025
0adb195
chore(deps): update go to v1.24.2 (#33)
cultureamp-renovate[bot] Apr 12, 2025
791c94a
chore(deps): update module golang.org/x/sys to v0.33.0 (#34)
cultureamp-renovate[bot] May 10, 2025
1f26e2f
chore(deps): update dependency go to v1.24.3 (#36)
cultureamp-renovate[bot] Jul 11, 2025
f8fa9f3
chore(deps): update go to v1.24.5 (#37)
cultureamp-renovate[bot] Jul 11, 2025
54fa3f6
chore(deps): update buildkite/plugin-tester docker tag to v4.2.0 (#38)
cultureamp-renovate[bot] Jul 11, 2025
5283135
chore(deps): update module golang.org/x/sys to v0.34.0 (#39)
cultureamp-renovate[bot] Jul 12, 2025
df692d2
Merge main into renovate/rollup
cultureamp-renovate[bot] Oct 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/go-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Lint code
uses: golangci/golangci-lint-action@v6
with:
version: v1.62.2
version: v1.64.8
working-directory: src
args: "-v --timeout=2m"

Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
golang 1.20
golang 1.24.5
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ services:
- ".:/plugin:ro"

tests:
image: buildkite/plugin-tester:v4.0.0
image: buildkite/plugin-tester:v4.2.0
volumes:
- ".:/plugin"
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BUILDER_IMAGE=public.ecr.aws/docker/library/golang:1.18-alpine
ARG BUILDER_IMAGE=public.ecr.aws/docker/library/golang:1.24-alpine
ARG DISTROLESS_IMAGE=gcr.io/distroless/static

FROM ${BUILDER_IMAGE} as builder
Expand Down
8 changes: 4 additions & 4 deletions src/go.mod
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
module github.com/cultureamp/example-go-buildkite-plugin

go 1.20
go 1.24.5

require (
github.com/kelseyhightower/envconfig v1.4.0
github.com/stretchr/testify v1.8.4
github.com/stretchr/testify v1.10.0
)

require (
github.com/kr/pretty v0.1.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.6.0
golang.org/x/sys v0.34.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)
18 changes: 6 additions & 12 deletions src/go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/kelseyhightower/envconfig v1.4.0 h1:Im6hONhd3pLkfDFsbRgu68RDNkGF1r3dvMUtDTo2cv8=
Expand All @@ -10,19 +9,14 @@ github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c=
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY=
github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA=
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA=
golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
Loading