File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ FROM registry.access.redhat.com/ubi8/go-toolset:1.19 AS builder
18
18
USER root
19
19
20
20
# Install yq
21
- RUN curl -sL -O https://github.com/mikefarah/yq/releases/download/v4.9.5/yq_linux_amd64 -o /usr/local/bin/yq && mv ./yq_linux_amd64 /usr/local/bin/yq && chmod +x /usr/local/bin/yq
21
+ ENV YQ_VERSION=v4.44.1
22
+ RUN curl -sL -O https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 -o /usr/local/bin/yq && mv ./yq_linux_amd64 /usr/local/bin/yq && chmod +x /usr/local/bin/yq
22
23
23
24
COPY . /registry
24
25
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ FROM registry.access.redhat.com/ubi8/go-toolset:1.19 AS builder
18
18
USER root
19
19
20
20
# Install yq
21
- RUN curl -sL -O https://github.com/mikefarah/yq/releases/download/v4.9.5/yq_linux_amd64 -o /usr/local/bin/yq && mv ./yq_linux_amd64 /usr/local/bin/yq && chmod +x /usr/local/bin/yq
21
+ ENV YQ_VERSION=v4.44.1
22
+ RUN curl -sL -O https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 -o /usr/local/bin/yq && mv ./yq_linux_amd64 /usr/local/bin/yq && chmod +x /usr/local/bin/yq
22
23
23
24
COPY . /registry
24
25
Original file line number Diff line number Diff line change @@ -29,7 +29,9 @@ concurrency:
29
29
30
30
env :
31
31
MINIKUBE_VERSION : " v1.29.0"
32
+ MINIKUBE_RESOURCES : " --memory 14gb --cpus 4"
32
33
KUBERNETES_VERSION : " v1.25.2"
34
+ YQ_VERSION : " v4.44.1"
33
35
TEST_DELTA : false
34
36
35
37
jobs :
50
52
- name : Install Ginkgo
51
53
run :
go install -mod=mod github.com/onsi/ginkgo/v2/[email protected]
52
54
55
+ - name : Install yq
56
+ run : curl -sL -O https://github.com/mikefarah/yq/releases/download/${{ env.YQ_VERSION }}/yq_linux_amd64 -o /usr/local/bin/yq && mv ./yq_linux_amd64 /usr/local/bin/yq && chmod +x /usr/local/bin/yq
57
+
53
58
- name : Test delta if on a pull request
54
59
if : ${{ github.event_name == 'pull_request' }}
55
60
run : echo "TEST_DELTA=true" >> $GITHUB_ENV
You can’t perform that action at this time.
0 commit comments