update runner-go module

This commit is contained in:
Brad Rydzewski
2020-01-30 23:49:13 -08:00
parent 754c8d44a7
commit 8ad796ad1e
4 changed files with 19 additions and 3 deletions

View File

@@ -241,8 +241,13 @@ func Test_matchHostname(t *testing.T) {
want: true,
},
{
image: "1.2.3.4:8000/golang:1.0.0",
hostname: "1.2.3.4:8000",
image: "gcr.io/golang:1.0.0",
hostname: "gcr.io",
want: true,
},
{
image: "012345678910.dkr.ecr.us-east-1.amazonaws.com/foo:latest",
hostname: "012345678910.dkr.ecr.us-east-1.amazonaws.com",
want: true,
},
{