File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
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,6 +29,7 @@ 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"
33
34
TEST_DELTA : false
34
35
55
56
run : echo "TEST_DELTA=true" >> $GITHUB_ENV
56
57
57
58
- name : Build parents file and get child samples
58
- run : echo "STACKS=$(bash tests/build_parents_file.sh)" >> $GITHUB_ENV
59
+ uses : mikefarah/yq@557dcb87b8efe786f89a12c09e9046b4753ab72e # v4.44.1
60
+ with :
61
+ cmd : echo "STACKS=$(bash tests/build_parents_file.sh)" >> $GITHUB_ENV
59
62
60
63
- name : Validate samples
61
64
if : ${{ env.STACKS != '' }}
You can’t perform that action at this time.
0 commit comments