From 9b2861b63c1a7695819c93657ed321e6bf287ea6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 23 Aug 2023 03:01:08 +0000 Subject: [PATCH] Update all dependencies | datasource | package | from | to | | --------------- | --------------------------------------------------- | -------- | -------- | | github-tags | defenseunicorns/zarf | v0.28.4 | v0.29.0 | | helm | flux-app | 1.0.5 | 1.0.7 | | docker | ghcr.io/defenseunicorns/build-harness/build-harness | 1.10.2 | 1.10.4 | | docker | ghcr.io/defenseunicorns/packages/dubbd-k3d | 0.6.1 | 0.6.2 | | go | github.com/gruntwork-io/terratest | v0.43.11 | v0.43.12 | | github-tags | golang/go | 1.20.4 | 1.21.0 | | github-tags | golangci/golangci-lint | 1.52.2 | 1.54.2 | | github-tags | golangci/golangci-lint | v1.52.2 | v1.54.2 | | github-tags | pre-commit/pre-commit | 3.3.2 | 3.3.3 | | github-tags | python-jsonschema/check-jsonschema | 0.23.0 | 0.24.1 | | docker | rancher/k3s | v1.26.5 | v1.27.4 | | github-tags | renovatebot/pre-commit-hooks | 35.105.1 | 36.57.2 | | github-releases | hashicorp/terraform | 1.4.6 | 1.5.5 | | github-tags | terraform-linters/tflint | 0.46.1 | 0.47.0 | --- .github/workflows/publish.yml | 4 ++-- .pre-commit-config.yaml | 6 +++--- .tool-versions | 10 +++++----- Makefile | 6 +++--- go.mod | 2 +- go.sum | 2 ++ utils/k3d/k3d-config.yaml | 2 +- zarf.yaml | 2 +- 8 files changed, 18 insertions(+), 16 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 872f7fa..2ccd537 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,10 +28,10 @@ jobs: uses: supplypike/setup-bin@v3 with: # renovate: zarf-uri datasource=github-tags depName=defenseunicorns/zarf - uri: 'https://github.com/defenseunicorns/zarf/releases/download/v0.28.4/zarf_v0.28.4_Linux_amd64' + uri: 'https://github.com/defenseunicorns/zarf/releases/download/v0.29.0/zarf_v0.29.0_Linux_amd64' name: 'zarf' # renovate: datasource=github-tags depName=defenseunicorns/zarf versioning=semver - version: 'v0.28.4' + version: 'v0.29.0' - name: Login to GHCR uses: docker/login-action@v2 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6f82e01..3c83787 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -31,7 +31,7 @@ repos: hooks: - id: fix-smartquotes - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.23.0 + rev: 0.24.1 hooks: - id: check-jsonschema name: "Validate Zarf Configs Against Schema" @@ -44,10 +44,10 @@ repos: "--no-cache" ] - repo: https://github.com/golangci/golangci-lint - rev: v1.52.2 + rev: v1.54.2 hooks: - id: golangci-lint - repo: https://github.com/renovatebot/pre-commit-hooks - rev: 35.105.1 + rev: 36.57.2 hooks: - id: renovate-config-validator diff --git a/.tool-versions b/.tool-versions index 4892760..07fa212 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,7 +1,7 @@ -golang 1.20.4 -golangci-lint 1.52.2 -pre-commit 3.3.2 -terraform 1.4.6 -tflint 0.46.1 +golang 1.21.0 +golangci-lint 1.54.2 +pre-commit 3.3.3 +terraform 1.5.5 +tflint 0.47.0 tfsec 1.28.1 sops 3.7.3 diff --git a/Makefile b/Makefile index 9660aa4..dd8dc3d 100755 --- a/Makefile +++ b/Makefile @@ -1,14 +1,14 @@ # The version of Zarf to use. To keep this repo as portable as possible the Zarf binary will be downloaded and added to # the build folder. # renovate: datasource=github-tags depName=defenseunicorns/zarf -ZARF_VERSION := v0.28.4 +ZARF_VERSION := v0.29.0 # The version of the build harness container to use BUILD_HARNESS_REPO := ghcr.io/defenseunicorns/build-harness/build-harness # renovate: datasource=docker depName=ghcr.io/defenseunicorns/build-harness/build-harness -BUILD_HARNESS_VERSION := 1.10.2 +BUILD_HARNESS_VERSION := 1.10.4 # renovate: datasource=docker depName=ghcr.io/defenseunicorns/packages/dubbd-k3d extractVersion=^(?\d+\.\d+\.\d+) -DUBBD_K3D_VERSION := 0.6.1 +DUBBD_K3D_VERSION := 0.6.2 # Figure out which Zarf binary we should use based on the operating system we are on ZARF_BIN := zarf diff --git a/go.mod b/go.mod index 92a12d4..878f5b8 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/defenseunicorns/uds-capability-confluence go 1.20 require ( - github.com/gruntwork-io/terratest v0.43.11 + github.com/gruntwork-io/terratest v0.43.12 github.com/stretchr/testify v1.8.4 ) diff --git a/go.sum b/go.sum index b7f64c1..00e37f4 100644 --- a/go.sum +++ b/go.sum @@ -373,6 +373,8 @@ github.com/gruntwork-io/go-commons v0.8.0 h1:k/yypwrPqSeYHevLlEDmvmgQzcyTwrlZGRa github.com/gruntwork-io/go-commons v0.8.0/go.mod h1:gtp0yTtIBExIZp7vyIV9I0XQkVwiQZze678hvDXof78= github.com/gruntwork-io/terratest v0.43.11 h1:k3U5lZjiNa38rqcTx/dus8cCaJY7qxShGIuGLeLfj/s= github.com/gruntwork-io/terratest v0.43.11/go.mod h1:Tw+6/fcJFiBPpsx9NNSkLG5oHKIeaqiJHVLpQ+ORIfQ= +github.com/gruntwork-io/terratest v0.43.12 h1:e1SgJe/JF3zh1k/7BDMv7sF3wTKqkSYNx79UJT/74+o= +github.com/gruntwork-io/terratest v0.43.12/go.mod h1:Tw+6/fcJFiBPpsx9NNSkLG5oHKIeaqiJHVLpQ+ORIfQ= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= diff --git a/utils/k3d/k3d-config.yaml b/utils/k3d/k3d-config.yaml index 8c45eba..df4c848 100644 --- a/utils/k3d/k3d-config.yaml +++ b/utils/k3d/k3d-config.yaml @@ -3,7 +3,7 @@ kind: Simple metadata: name: ci servers: 1 -image: rancher/k3s:v1.26.5-k3s1 +image: rancher/k3s:v1.27.4-k3s1 options: k3s: extraArgs: diff --git a/zarf.yaml b/zarf.yaml index e08f03b..2df2314 100644 --- a/zarf.yaml +++ b/zarf.yaml @@ -35,7 +35,7 @@ components: # renovate: datasource=helm - name: flux-app url: https://defenseunicorns.github.io/uds-support-charts/ - version: 1.0.5 + version: 1.0.7 namespace: confluence valuesFiles: - confluence-flux-values.yaml