Skip to content

Commit

Permalink
Version 1.28.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Fred78290 committed Dec 24, 2023
1 parent 4da357f commit cc59419
Show file tree
Hide file tree
Showing 5 changed files with 116 additions and 101 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
with:
submodules: true
- name: Setup Go environment
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.21
- name: Build binary
shell: bash
run: make all
- name: Output
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: binaries
path: out
Expand All @@ -39,23 +39,23 @@ jobs:
REGISTRY: ${{ secrets.REGISTRY }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Go environment
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.21
- name: Download binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: binaries
path: out
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.prep.outputs.tag }}
release_name: Release ${{ steps.prep.outputs.tag }}
name: Release ${{ steps.prep.outputs.tag }}
draft: false
files: |
out/ecr-credential-provider-amd64
Expand Down
42 changes: 29 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,30 +1,46 @@
module github.com/Fred78290/aws-ecr-credential-provider

go 1.19
go 1.21

toolchain go1.21.5

require (
github.com/aws/aws-sdk-go v1.44.257
github.com/golang/mock v1.6.0
k8s.io/apimachinery v0.27.1
k8s.io/cloud-provider-aws v1.27.1
k8s.io/klog/v2 v2.100.1
k8s.io/kubelet v0.27.1
github.com/aws/aws-sdk-go v1.49.9
github.com/spf13/cobra v1.8.0
k8s.io/apimachinery v0.28.5
k8s.io/component-base v0.28.5
k8s.io/klog/v2 v2.110.1
k8s.io/kubelet v0.28.5
)

require (
github.com/go-logr/logr v1.2.4 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/go-logr/logr v1.3.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/text v0.9.0 // indirect
github.com/prometheus/client_golang v1.16.0 // indirect
github.com/prometheus/client_model v0.4.0 // indirect
github.com/prometheus/common v0.44.0 // indirect
github.com/prometheus/procfs v0.10.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
)
Loading

0 comments on commit cc59419

Please sign in to comment.