Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposing changes to patch this base worker image #672

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
adding go updates
  • Loading branch information
sclinnell committed May 16, 2024
commit 13e942777c0522c5134929c613d6a4e15f4fe8ba
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17 as builder
FROM golang:1.21 as builder
MAINTAINER Travis CI GmbH <support+travis-worker-docker-image@travis-ci.org>

COPY . /go/src/github.com/travis-ci/worker
41 changes: 28 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
@@ -3,22 +3,29 @@ module github.com/travis-ci/worker
go 1.12

require (
cloud.google.com/go v0.81.0
cloud.google.com/go/compute/metadata v0.2.3
contrib.go.opencensus.io/exporter/stackdriver v0.5.0
github.com/Azure/go-ntlmssp v0.0.0-20180810175552-4a21cbd618b4 // indirect
github.com/ChrisTrenkamp/goxpath v0.0.0-20170922090931-c385f95c6022 // indirect
github.com/Jeffail/tunny v0.0.0-20180304204616-59cfa8fcb19f
github.com/aws/aws-sdk-go v1.15.31
github.com/Microsoft/go-winio v0.5.1 // indirect
github.com/aws/aws-sdk-go v1.34.28
github.com/bitly/go-simplejson v0.5.0
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
github.com/cenk/backoff v2.1.0+incompatible
github.com/containerd/containerd v1.6.1 // indirect
github.com/docker/docker v20.10.13+incompatible
github.com/certifi/gocertifi v0.0.0-20200922220541-2c3bb06c6054 // indirect
github.com/docker/distribution v2.8.2-beta.1+incompatible // indirect
github.com/docker/docker v20.10.27+incompatible
github.com/docker/go-connections v0.4.0
github.com/docker/go-units v0.4.0 // indirect
github.com/dustin/go-humanize v1.0.0
github.com/dylanmei/iso8601 v0.1.0 // indirect
github.com/flosch/pongo2 v0.0.0-20190505152737-8914e1cf9164 // indirect
github.com/frankban/quicktest v1.11.3 // indirect
github.com/garyburd/redigo v0.0.0-20180404160726-569eae59ada9
github.com/getsentry/raven-go v0.2.0
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/gorilla/mux v1.7.3
github.com/gorilla/websocket v1.5.0 // indirect
github.com/jtacoma/uritemplates v1.0.0
@@ -29,37 +36,45 @@ require (
github.com/juju/utils v0.0.0-20180820210520-bf9cc5bdd62d // indirect
github.com/juju/version v0.0.0-20180108022336-b64dbd566305 // indirect
github.com/juju/webbrowser v0.0.0-20180907093207-efb9432b2bcb // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/julienschmidt/httprouter v1.3.0 // indirect
github.com/lxc/lxd v0.0.0-20190613145114-3dac7136d553
github.com/masterzen/azure-sdk-for-go v0.0.0-20161014135628-ee4f0065d00c // indirect
github.com/masterzen/simplexml v0.0.0-20160608183007-4572e39b1ab9 // indirect
github.com/masterzen/winrm v0.0.0-20180702085143-58761a495ca4
github.com/mihasya/go-metrics-librato v0.0.0-20171227215858-c2a1624c7a80
github.com/mitchellh/mapstructure v1.3.3 // indirect
github.com/mitchellh/multistep v0.0.0-20170316185339-391576a156a5
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/packer-community/winrmcp v0.0.0-20180921211025-c76d91c1e7db
github.com/pborman/uuid v1.2.0
github.com/pkg/errors v0.9.1
github.com/pkg/sftp v1.8.3
github.com/pkg/sftp v1.13.1
github.com/rackspace/gophercloud v0.0.0-20161013232434-e00690e87603
github.com/rcrowley/go-metrics v0.0.0-20180503174638-e2704e165165
github.com/sirupsen/logrus v1.8.1
github.com/streadway/amqp v0.0.0-20180806233856-70e15c650864
github.com/stretchr/testify v1.7.0
go.opencensus.io v0.23.0
golang.org/x/crypto v0.1.0
golang.org/x/net v0.7.0
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4
google.golang.org/api v0.43.0
github.com/stretchr/testify v1.8.3
go.opencensus.io v0.24.0
golang.org/x/crypto v0.21.0
golang.org/x/net v0.23.0
golang.org/x/oauth2 v0.7.0
golang.org/x/sync v0.1.0
google.golang.org/api v0.114.0
google.golang.org/grpc v1.56.3 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/httprequest.v1 v1.2.0 // indirect
gopkg.in/juju/environschema.v1 v1.0.0 // indirect
gopkg.in/macaroon-bakery.v2 v2.1.0 // indirect
gopkg.in/macaroon.v2 v2.1.0 // indirect
gopkg.in/retry.v1 v1.0.3 // indirect
gopkg.in/robfig/cron.v2 v2.0.0-20150107220207-be2e0b0deed5 // indirect
gopkg.in/urfave/cli.v1 v1.20.0
gopkg.in/yaml.v2 v2.4.0 // indirect
gotest.tools/v3 v3.0.3 // indirect
)

replace github.com/go-check/check v1.0.0-20180628173108-788fd7840127 => github.com/go-check/check v0.0.0-20180628173108-788fd7840127
Loading