Merge pull request #11249 from strongjz/fix-e2e-1.9

update ginkgo and yamllint
This commit is contained in:
James Strong 2024-04-10 15:40:00 -04:00 committed by GitHub
commit 641eaf6fc4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View file

@ -51,10 +51,10 @@ image:
--build-arg LUAROCKS_VERSION=3.8.0 \
--build-arg LUAROCKS_SHA=ab6612ca9ab87c6984871d2712d05525775e8b50172701a0a1cabddf76de2be7 \
--build-arg CHART_TESTING_VERSION=3.8.0 \
--build-arg YAML_LINT_VERSION=1.27.1 \
--build-arg YAML_LINT_VERSION=1.33.0 \
--build-arg YAMALE_VERSION=4.0.4 \
--build-arg HELM_VERSION=3.11.2 \
--build-arg GINKGO_VERSION=2.13.0 \
--build-arg GINKGO_VERSION=2.13.1 \
--build-arg GOLINT_VERSION=latest \
-t ${IMAGE}:${TAG} rootfs
@ -72,10 +72,10 @@ build: ensure-buildx
--build-arg LUAROCKS_VERSION=3.8.0 \
--build-arg LUAROCKS_SHA=ab6612ca9ab87c6984871d2712d05525775e8b50172701a0a1cabddf76de2be7 \
--build-arg CHART_TESTING_VERSION=3.8.0 \
--build-arg YAML_LINT_VERSION=1.27.1 \
--build-arg YAML_LINT_VERSION=1.33.0 \
--build-arg YAMALE_VERSION=4.0.4 \
--build-arg HELM_VERSION=3.11.2 \
--build-arg GINKGO_VERSION=2.13.0 \
--build-arg GINKGO_VERSION=2.13.1 \
--build-arg GOLINT_VERSION=latest \
-t ${IMAGE}:${TAG} rootfs

View file

@ -120,9 +120,9 @@ RUN wget -qO /tmp/helm.tgz \
&& rm -rf /tmp/*
# Install a YAML Linter
RUN pip install "yamllint==$YAML_LINT_VERSION"
RUN pip install --break-system-packages "yamllint==$YAML_LINT_VERSION"
# Install Yamale YAML schema validator
RUN pip install "yamale==$YAMALE_VERSION"
RUN pip install --break-system-packages "yamale==$YAMALE_VERSION"
WORKDIR $GOPATH