From e89fa706d43f4b3baa6c0f1672e1f368421bcc11 Mon Sep 17 00:00:00 2001 From: yxxhero <11087727+yxxhero@users.noreply.github.com> Date: Sat, 6 Apr 2024 22:04:38 +0800 Subject: [PATCH] update deps versions (#1446) --- .github/workflows/ci.yaml | 10 +++++----- Dockerfile | 4 ++-- Dockerfile.debian-stable-slim | 4 ++-- Dockerfile.ubuntu | 4 ++-- pkg/app/init.go | 6 +++--- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9fbde110..fb4435d6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: cache: false - uses: golangci/golangci-lint-action@v4 with: - version: v1.56.0 + version: v1.57.2 tests: runs-on: ubuntu-latest @@ -67,7 +67,7 @@ jobs: # Once it turned out to be not practically true, # we will mark this combination as failable, # and instruct users to upgrade helm and helm-secrets at once. - plugin-secrets-version: 4.5.1 + plugin-secrets-version: 4.6.0 plugin-diff-version: 3.9.5 extra-helmfile-flags: '' v1mode: '' @@ -79,14 +79,14 @@ jobs: v1mode: '' - helm-version: v3.14.3 kustomize-version: v5.2.1 - plugin-secrets-version: 4.5.1 + plugin-secrets-version: 4.6.0 plugin-diff-version: 3.9.5 extra-helmfile-flags: '' v1mode: '' # Helmfile v1 - helm-version: v3.14.3 kustomize-version: v5.2.1 - plugin-secrets-version: 4.5.1 + plugin-secrets-version: 4.6.0 plugin-diff-version: 3.9.5 extra-helmfile-flags: '' v1mode: 'true' @@ -94,7 +94,7 @@ jobs: # enable it via extra-helmfile-flags below. - helm-version: v3.14.3 kustomize-version: v5.2.1 - plugin-secrets-version: 4.5.1 + plugin-secrets-version: 4.6.0 plugin-diff-version: 3.9.5 extra-helmfile-flags: '--enable-live-output' v1mode: '' diff --git a/Dockerfile b/Dockerfile index ed0b8888..ba1c9e83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -95,8 +95,8 @@ RUN set -x && \ [ "$(age-keygen --version)" = "${AGE_VERSION}" ] RUN helm plugin install https://github.com/databus23/helm-diff --version v3.9.5 && \ - helm plugin install https://github.com/jkroepke/helm-secrets --version v4.5.1 && \ - helm plugin install https://github.com/hypnoglow/helm-s3.git --version v0.15.1 && \ + helm plugin install https://github.com/jkroepke/helm-secrets --version v4.6.0 && \ + helm plugin install https://github.com/hypnoglow/helm-s3.git --version v0.16.0 && \ helm plugin install https://github.com/aslafy-z/helm-git.git --version v0.15.1 && \ rm -rf ${HELM_CACHE_HOME}/plugins diff --git a/Dockerfile.debian-stable-slim b/Dockerfile.debian-stable-slim index e08c37fc..3a17af9b 100644 --- a/Dockerfile.debian-stable-slim +++ b/Dockerfile.debian-stable-slim @@ -100,8 +100,8 @@ RUN set -x && \ [ "$(age-keygen --version)" = "${AGE_VERSION}" ] RUN helm plugin install https://github.com/databus23/helm-diff --version v3.9.5 && \ - helm plugin install https://github.com/jkroepke/helm-secrets --version v4.5.1 && \ - helm plugin install https://github.com/hypnoglow/helm-s3.git --version v0.15.1 && \ + helm plugin install https://github.com/jkroepke/helm-secrets --version v4.6.0 && \ + helm plugin install https://github.com/hypnoglow/helm-s3.git --version v0.16.0 && \ helm plugin install https://github.com/aslafy-z/helm-git.git --version v0.15.1 && \ rm -rf ${HELM_CACHE_HOME}/plugins diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 8dba9220..c03ebf36 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -100,8 +100,8 @@ RUN set -x && \ [ "$(age-keygen --version)" = "${AGE_VERSION}" ] RUN helm plugin install https://github.com/databus23/helm-diff --version v3.9.5 && \ - helm plugin install https://github.com/jkroepke/helm-secrets --version v4.5.1 && \ - helm plugin install https://github.com/hypnoglow/helm-s3.git --version v0.15.1 && \ + helm plugin install https://github.com/jkroepke/helm-secrets --version v4.6.0 && \ + helm plugin install https://github.com/hypnoglow/helm-s3.git --version v0.16.0 && \ helm plugin install https://github.com/aslafy-z/helm-git.git --version v0.15.1 && \ rm -rf ${HELM_CACHE_HOME}/plugins diff --git a/pkg/app/init.go b/pkg/app/init.go index 83bd98ca..31b42f62 100644 --- a/pkg/app/init.go +++ b/pkg/app/init.go @@ -20,9 +20,9 @@ const ( HelmRequiredVersion = "v3.13.3" HelmRecommendedVersion = "v3.14.3" HelmDiffRecommendedVersion = "v3.9.5" - HelmSecretsRecommendedVersion = "v4.1.1" - HelmGitRecommendedVersion = "v0.12.0" - HelmS3RecommendedVersion = "v0.14.0" + HelmSecretsRecommendedVersion = "v4.6.0" + HelmGitRecommendedVersion = "v0.15.1" + HelmS3RecommendedVersion = "v0.16.0" HelmInstallCommand = "https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3" )