File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -37,10 +37,11 @@ jobs:
37
37
run : |
38
38
echo 'GO_TAGS=integration' >> $GITHUB_ENV
39
39
- name : Setup Kubernetes
40
- uses : engineerd/setup- kind@v0 .5.0
40
+ uses : helm/ kind-action@v1 .5.0
41
41
with :
42
- version : v0.11.1
43
- image : kindest/node:v1.21.1@sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6
42
+ version : v0.17.0
43
+ cluster_name : kind
44
+ node_image : kindest/node:v1.21.1@sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6
44
45
- name : Setup Kustomize
45
46
uses : fluxcd/pkg/actions/kustomize@main
46
47
- name : Setup Helm
70
71
- name : Prepare
71
72
id : prep
72
73
run : |
73
- echo ::set-output name= CLUSTER:: arm64-${GITHUB_SHA:0:7}-$(date +%s)
74
- echo ::set-output name= CONTEXT:: kind-arm64-${GITHUB_SHA:0:7}-$(date +%s)
74
+ echo " CLUSTER= arm64-${GITHUB_SHA:0:7}-$(date +%s)" >> $GITHUB_OUTPUT
75
+ echo " CONTEXT= kind-arm64-${GITHUB_SHA:0:7}-$(date +%s)" >> $GITHUB_OUTPUT
75
76
- name : Setup Kubernetes Kind
76
77
run : |
77
78
kind create cluster --name ${{ steps.prep.outputs.CLUSTER }} --kubeconfig=/tmp/${{ steps.prep.outputs.CLUSTER }}
Original file line number Diff line number Diff line change 32
32
if [[ $GITHUB_REF == refs/tags/* ]]; then
33
33
VERSION=${GITHUB_REF/refs\/tags\//}
34
34
fi
35
- echo ::set-output name= BUILD_DATE:: $(date -u +'%Y-%m-%dT%H:%M:%SZ')
36
- echo ::set-output name= VERSION:: ${VERSION}
35
+ echo " BUILD_DATE= $(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
36
+ echo " VERSION= ${VERSION}" >> $GITHUB_OUTPUT
37
37
- name : Setup QEMU
38
38
uses : docker/setup-qemu-action@v2
39
39
- name : Setup Docker Buildx
You can’t perform that action at this time.
0 commit comments