Skip to content

Commit e94d408

Browse files
authored
bump deps using ./hack/bump-deps.sh (#1592)
1 parent ff810c1 commit e94d408

File tree

362 files changed

+13226
-6522
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

362 files changed

+13226
-6522
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
go-version: [1.18, 1.19] # TODO: add 1.20
15+
go-version: [1.19, '1.20']
1616

1717
steps:
1818
- uses: actions/checkout@v3

.github/workflows/bump-deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v3
2222
- uses: actions/setup-go@v3
2323
with:
24-
go-version: 1.18
24+
go-version: 1.19
2525
check-latest: true
2626

2727
- run: ./hack/bump-deps.sh

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v3
2020
- uses: actions/setup-go@v3
2121
with:
22-
go-version: 1.18
22+
go-version: 1.19
2323
check-latest: true
2424

2525
- name: crane append to an image, set the entrypoint, run it locally, roundtrip it

.github/workflows/ecr-auth.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v3
2222
- uses: actions/setup-go@v3
2323
with:
24-
go-version: 1.18
24+
go-version: 1.19
2525
check-latest: true
2626

2727
- name: Install krane
@@ -61,7 +61,7 @@ jobs:
6161
- uses: actions/checkout@v3
6262
- uses: actions/setup-go@v3
6363
with:
64-
go-version: 1.18
64+
go-version: 1.19
6565
check-latest: true
6666

6767
- name: Install crane

.github/workflows/ghcr-auth.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v3
1818
- uses: actions/setup-go@v3
1919
with:
20-
go-version: 1.18
20+
go-version: 1.19
2121
check-latest: true
2222

2323
- name: Install krane
@@ -44,4 +44,4 @@ jobs:
4444
if [[ "$CRED1" == "$CRED2" ]] ; then
4545
echo "credentials are cached by infrastructure"
4646
fi
47-
47+

.github/workflows/presubmit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- uses: actions/checkout@v3
3030
- uses: actions/setup-go@v3
3131
with:
32-
go-version: 1.18
32+
go-version: 1.19
3333
check-latest: true
3434
- run: ./hack/presubmit.sh

.github/workflows/style.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/setup-go@v3
1414
with:
15-
go-version: 1.18
15+
go-version: 1.19
1616
check-latest: true
1717
- uses: actions/checkout@v3
1818
- uses: chainguard-dev/actions/goimports@5e21cb47971231c078a677dfe89a348371cb880c # main
@@ -25,12 +25,12 @@ jobs:
2525
- uses: actions/checkout@v3
2626
- uses: actions/setup-go@v3
2727
with:
28-
go-version: 1.18
28+
go-version: 1.19
2929
check-latest: true
3030

3131
- uses: golangci/golangci-lint-action@v3.4.0
3232
with:
33-
version: v1.45.2
33+
version: v1.51.2
3434

3535
- uses: reviewdog/action-misspell@v1
3636
if: ${{ always() }}

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
test:
1212
strategy:
1313
matrix:
14-
go-version: [1.18, 1.19] # TODO: add 1.20
14+
go-version: [1.19, '1.20']
1515

1616
name: Unit Tests
1717
runs-on: ubuntu-latest

cmd/krane/go.mod

Lines changed: 35 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -5,62 +5,63 @@ go 1.18
55
replace github.com/google/go-containerregistry => ../../
66

77
require (
8-
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20221004211355-a250ad2ca1e3
9-
github.com/chrismellard/docker-credential-acr-env v0.0.0-20221002210726-e883f69e0206
10-
github.com/google/go-containerregistry v0.11.0
8+
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20230228174139-39c3d18f0af1
9+
github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589
10+
github.com/google/go-containerregistry v0.13.0
1111
)
1212

1313
require (
14-
cloud.google.com/go/compute v1.10.0 // indirect
15-
github.com/Azure/azure-sdk-for-go v67.0.0+incompatible // indirect
14+
cloud.google.com/go/compute v1.18.0 // indirect
15+
cloud.google.com/go/compute/metadata v0.2.3 // indirect
16+
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
1617
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
1718
github.com/Azure/go-autorest/autorest v0.11.28 // indirect
18-
github.com/Azure/go-autorest/autorest/adal v0.9.21 // indirect
19-
github.com/Azure/go-autorest/autorest/azure/auth v0.5.11 // indirect
19+
github.com/Azure/go-autorest/autorest/adal v0.9.22 // indirect
20+
github.com/Azure/go-autorest/autorest/azure/auth v0.5.12 // indirect
2021
github.com/Azure/go-autorest/autorest/azure/cli v0.4.6 // indirect
2122
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
2223
github.com/Azure/go-autorest/logger v0.2.1 // indirect
2324
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
24-
github.com/aws/aws-sdk-go-v2 v1.16.16 // indirect
25-
github.com/aws/aws-sdk-go-v2/config v1.17.8 // indirect
26-
github.com/aws/aws-sdk-go-v2/credentials v1.12.21 // indirect
27-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.17 // indirect
28-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.23 // indirect
29-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.17 // indirect
30-
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.24 // indirect
31-
github.com/aws/aws-sdk-go-v2/service/ecr v1.17.18 // indirect
32-
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.13.17 // indirect
33-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.17 // indirect
34-
github.com/aws/aws-sdk-go-v2/service/sso v1.11.23 // indirect
35-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.13.6 // indirect
36-
github.com/aws/aws-sdk-go-v2/service/sts v1.16.19 // indirect
37-
github.com/aws/smithy-go v1.13.3 // indirect
38-
github.com/containerd/stargz-snapshotter/estargz v0.12.1 // indirect
25+
github.com/aws/aws-sdk-go-v2 v1.17.5 // indirect
26+
github.com/aws/aws-sdk-go-v2/config v1.18.15 // indirect
27+
github.com/aws/aws-sdk-go-v2/credentials v1.13.15 // indirect
28+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.23 // indirect
29+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.29 // indirect
30+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.23 // indirect
31+
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.30 // indirect
32+
github.com/aws/aws-sdk-go-v2/service/ecr v1.18.5 // indirect
33+
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.15.4 // indirect
34+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.23 // indirect
35+
github.com/aws/aws-sdk-go-v2/service/sso v1.12.4 // indirect
36+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.4 // indirect
37+
github.com/aws/aws-sdk-go-v2/service/sts v1.18.5 // indirect
38+
github.com/aws/smithy-go v1.13.5 // indirect
39+
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
3940
github.com/dimchansky/utfbom v1.1.1 // indirect
40-
github.com/docker/cli v20.10.20+incompatible // indirect
41+
github.com/docker/cli v23.0.1+incompatible // indirect
4142
github.com/docker/distribution v2.8.1+incompatible // indirect
42-
github.com/docker/docker v20.10.20+incompatible // indirect
43+
github.com/docker/docker v23.0.1+incompatible // indirect
4344
github.com/docker/docker-credential-helpers v0.7.0 // indirect
44-
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
45-
github.com/golang/protobuf v1.5.2 // indirect
45+
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
46+
github.com/golang/protobuf v1.5.3 // indirect
4647
github.com/google/go-cmp v0.5.9 // indirect
47-
github.com/inconshreveable/mousetrap v1.0.1 // indirect
48+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4849
github.com/jmespath/go-jmespath v0.4.0 // indirect
49-
github.com/klauspost/compress v1.15.11 // indirect
50+
github.com/klauspost/compress v1.16.0 // indirect
5051
github.com/mitchellh/go-homedir v1.1.0 // indirect
5152
github.com/opencontainers/go-digest v1.0.0 // indirect
5253
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
5354
github.com/pkg/errors v0.9.1 // indirect
5455
github.com/sirupsen/logrus v1.9.0 // indirect
55-
github.com/spf13/cobra v1.6.0 // indirect
56+
github.com/spf13/cobra v1.6.1 // indirect
5657
github.com/spf13/pflag v1.0.5 // indirect
5758
github.com/vbatts/tar-split v0.11.2 // indirect
58-
golang.org/x/crypto v0.1.0 // indirect
59-
golang.org/x/net v0.1.0 // indirect
60-
golang.org/x/oauth2 v0.1.0 // indirect
59+
golang.org/x/crypto v0.7.0 // indirect
60+
golang.org/x/net v0.8.0 // indirect
61+
golang.org/x/oauth2 v0.6.0 // indirect
6162
golang.org/x/sync v0.1.0 // indirect
62-
golang.org/x/sys v0.1.0 // indirect
63+
golang.org/x/sys v0.6.0 // indirect
6364
google.golang.org/appengine v1.6.7 // indirect
64-
google.golang.org/protobuf v1.28.1 // indirect
65+
google.golang.org/protobuf v1.29.0 // indirect
6566
gotest.tools/v3 v3.1.0 // indirect
6667
)

0 commit comments

Comments
 (0)