Skip to content

Commit e7a9f2b

Browse files
authored
bump deps using ./hack/bump-deps.sh (#1389)
* bump deps using ./hack/bump-deps.sh * bump deps using ./hack/bump-deps.sh * CI: use 1.18 everywhere * update chainguard-dev/actions to versions that go install * ignore woke findings in vendor
1 parent b7b4ead commit e7a9f2b

File tree

197 files changed

+11113
-5690
lines changed

Some content is hidden

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

197 files changed

+11113
-5690
lines changed

.github/workflows/boilerplate.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Check out code
2828
uses: actions/checkout@v3
2929

30-
- uses: chainguard-dev/actions/boilerplate@84c993eaf02da1c325854fb272a4df9184bd80fc # main
30+
- uses: chainguard-dev/actions/boilerplate@5e21cb47971231c078a677dfe89a348371cb880c # main
3131
with:
3232
extension: ${{ matrix.extension }}
3333
language: ${{ matrix.language }}

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

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

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

.github/workflows/bump-deps.yaml

+1-1
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.17
24+
go-version: 1.18
2525
check-latest: true
2626

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

.github/workflows/donotsubmit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v3
15-
- uses: chainguard-dev/actions/donotsubmit@84c993eaf02da1c325854fb272a4df9184bd80fc # main
15+
- uses: chainguard-dev/actions/donotsubmit@5e21cb47971231c078a677dfe89a348371cb880c # main

.github/workflows/e2e.yaml

+1-1
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.17
22+
go-version: 1.18
2323
check-latest: true
2424

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

.github/workflows/ghcr-auth.yaml

+1-1
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.17
20+
go-version: 1.18
2121
check-latest: true
2222

2323
- name: Install krane

.github/workflows/presubmit.yaml

+1-1
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.17
32+
go-version: 1.18
3333
check-latest: true
3434
- run: ./hack/presubmit.sh

.github/workflows/style.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
steps:
1313
- uses: actions/setup-go@v3
1414
with:
15-
go-version: 1.17
15+
go-version: 1.18
1616
check-latest: true
1717
- uses: actions/checkout@v3
18-
- uses: chainguard-dev/actions/goimports@84c993eaf02da1c325854fb272a4df9184bd80fc # main
18+
- uses: chainguard-dev/actions/goimports@5e21cb47971231c078a677dfe89a348371cb880c # main
1919

2020
lint:
2121
name: Lint
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v3
2626
- uses: actions/setup-go@v3
2727
with:
28-
go-version: 1.17
28+
go-version: 1.18
2929
check-latest: true
3030

3131
- uses: golangci/[email protected]
@@ -40,10 +40,10 @@ jobs:
4040
locale: "US"
4141
exclude: ./vendor/*
4242

43-
- uses: chainguard-dev/actions/trailing-space@84c993eaf02da1c325854fb272a4df9184bd80fc # main
43+
- uses: chainguard-dev/actions/trailing-space@5e21cb47971231c078a677dfe89a348371cb880c # main
4444
if: ${{ always() }}
4545

46-
- uses: chainguard-dev/actions/eof-newline@84c993eaf02da1c325854fb272a4df9184bd80fc # main
46+
- uses: chainguard-dev/actions/eof-newline@5e21cb47971231c078a677dfe89a348371cb880c # main
4747
if: ${{ always() }}
4848

4949
- uses: get-woke/woke-action-reviewdog@v0

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
test:
1212
strategy:
1313
matrix:
14-
go-version: [1.16, 1.17, 1.18]
14+
go-version: [1.18] # TODO: add 1.19
1515

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

.wokeignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor/**

cmd/krane/go.mod

+28-28
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ go 1.17
55
replace github.com/google/go-containerregistry => ../../
66

77
require (
8-
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20220517224237-e6f29200ae04
8+
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20220706184558-ce46abcd012b
99
github.com/chrismellard/docker-credential-acr-env v0.0.0-20220327082430-c57b701bfc08
10-
github.com/google/go-containerregistry v0.9.0
10+
github.com/google/go-containerregistry v0.10.0
1111
)
1212

1313
require (
14-
cloud.google.com/go/compute v1.6.1 // indirect
15-
github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect
14+
cloud.google.com/go/compute v1.7.0 // indirect
15+
github.com/Azure/azure-sdk-for-go v66.0.0+incompatible // indirect
1616
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
1717
github.com/Azure/go-autorest/autorest v0.11.27 // indirect
1818
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect
@@ -21,44 +21,44 @@ require (
2121
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
2222
github.com/Azure/go-autorest/logger v0.2.1 // indirect
2323
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
24-
github.com/aws/aws-sdk-go-v2 v1.16.4 // indirect
25-
github.com/aws/aws-sdk-go-v2/config v1.15.8 // indirect
26-
github.com/aws/aws-sdk-go-v2/credentials v1.12.3 // indirect
27-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.5 // indirect
28-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.11 // indirect
29-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.5 // indirect
30-
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.12 // indirect
31-
github.com/aws/aws-sdk-go-v2/service/ecr v1.17.5 // indirect
32-
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.13.5 // indirect
33-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.5 // indirect
34-
github.com/aws/aws-sdk-go-v2/service/sso v1.11.6 // indirect
35-
github.com/aws/aws-sdk-go-v2/service/sts v1.16.6 // indirect
36-
github.com/aws/smithy-go v1.11.2 // indirect
37-
github.com/containerd/stargz-snapshotter/estargz v0.11.4 // indirect
24+
github.com/aws/aws-sdk-go-v2 v1.16.7 // indirect
25+
github.com/aws/aws-sdk-go-v2/config v1.15.14 // indirect
26+
github.com/aws/aws-sdk-go-v2/credentials v1.12.9 // indirect
27+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.8 // indirect
28+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.14 // indirect
29+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.8 // indirect
30+
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.15 // indirect
31+
github.com/aws/aws-sdk-go-v2/service/ecr v1.17.8 // indirect
32+
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.13.8 // indirect
33+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.8 // indirect
34+
github.com/aws/aws-sdk-go-v2/service/sso v1.11.12 // indirect
35+
github.com/aws/aws-sdk-go-v2/service/sts v1.16.9 // indirect
36+
github.com/aws/smithy-go v1.12.0 // indirect
37+
github.com/containerd/stargz-snapshotter/estargz v0.12.0 // indirect
3838
github.com/dimchansky/utfbom v1.1.1 // indirect
39-
github.com/docker/cli v20.10.16+incompatible // indirect
39+
github.com/docker/cli v20.10.17+incompatible // indirect
4040
github.com/docker/distribution v2.8.1+incompatible // indirect
41-
github.com/docker/docker v20.10.16+incompatible // indirect
41+
github.com/docker/docker v20.10.17+incompatible // indirect
4242
github.com/docker/docker-credential-helpers v0.6.4 // indirect
43-
github.com/golang-jwt/jwt/v4 v4.4.1 // indirect
43+
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
4444
github.com/golang/protobuf v1.5.2 // indirect
4545
github.com/google/go-cmp v0.5.8 // indirect
4646
github.com/inconshreveable/mousetrap v1.0.0 // indirect
4747
github.com/jmespath/go-jmespath v0.4.0 // indirect
48-
github.com/klauspost/compress v1.15.4 // indirect
48+
github.com/klauspost/compress v1.15.8 // indirect
4949
github.com/mitchellh/go-homedir v1.1.0 // indirect
5050
github.com/opencontainers/go-digest v1.0.0 // indirect
5151
github.com/opencontainers/image-spec v1.0.3-0.20220114050600-8b9d41f48198 // indirect
5252
github.com/pkg/errors v0.9.1 // indirect
5353
github.com/sirupsen/logrus v1.8.1 // indirect
54-
github.com/spf13/cobra v1.4.0 // indirect
54+
github.com/spf13/cobra v1.5.0 // indirect
5555
github.com/spf13/pflag v1.0.5 // indirect
5656
github.com/vbatts/tar-split v0.11.2 // indirect
57-
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
58-
golang.org/x/net v0.0.0-20220524220425-1d687d428aca // indirect
59-
golang.org/x/oauth2 v0.0.0-20220524215830-622c5d57e401 // indirect
60-
golang.org/x/sync v0.0.0-20220513210516-0976fa681c29 // indirect
61-
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
57+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
58+
golang.org/x/net v0.0.0-20220708220712-1185a9018129 // indirect
59+
golang.org/x/oauth2 v0.0.0-20220630143837-2104d58473e0 // indirect
60+
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
61+
golang.org/x/sys v0.0.0-20220712014510-0a85c31ab51e // indirect
6262
google.golang.org/appengine v1.6.7 // indirect
6363
google.golang.org/protobuf v1.28.0 // indirect
6464
gotest.tools/v3 v3.1.0 // indirect

0 commit comments

Comments
 (0)