From 3c74d8eb12173b8c562350dd2f077d1923ff4bf1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Sep 2025 09:56:30 +0200 Subject: [PATCH] chore(deps): update dependency dagger/dagger to v0.18.18 (#522) Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: Leonardo Cecchi Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Leonardo Cecchi --- .github/workflows/barman-base-image.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/release-please.yml | 2 +- .github/workflows/release-publish.yml | 2 +- Taskfile.yml | 21 ++++++++++----------- 5 files changed, 14 insertions(+), 15 deletions(-) diff --git a/.github/workflows/barman-base-image.yml b/.github/workflows/barman-base-image.yml index a47ff1e..671dc7e 100644 --- a/.github/workflows/barman-base-image.yml +++ b/.github/workflows/barman-base-image.yml @@ -27,7 +27,7 @@ jobs: - name: Install Dagger env: # renovate: datasource=github-tags depName=dagger/dagger versioning=semver - DAGGER_VERSION: 0.18.17 + DAGGER_VERSION: 0.18.18 run: | curl -L https://dl.dagger.io/dagger/install.sh | BIN_DIR=$HOME/.local/bin sh - name: Publish a barman-base diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8a1733..adc31ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: - name: Install Dagger env: # renovate: datasource=github-tags depName=dagger/dagger versioning=semver - DAGGER_VERSION: 0.18.17 + DAGGER_VERSION: 0.18.18 run: | curl -L https://dl.dagger.io/dagger/install.sh | BIN_DIR=$HOME/.local/bin sh - name: Run CI task diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 14da1cd..9009144 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -31,7 +31,7 @@ jobs: - name: Install Dagger env: # renovate: datasource=github-tags depName=dagger/dagger versioning=semver - DAGGER_VERSION: 0.18.17 + DAGGER_VERSION: 0.18.18 run: | curl -L https://dl.dagger.io/dagger/install.sh | BIN_DIR=$HOME/.local/bin sh - name: Create image and manifest diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 147bc53..99483e3 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -21,7 +21,7 @@ jobs: - name: Install Dagger env: # renovate: datasource=github-tags depName=dagger/dagger versioning=semver - DAGGER_VERSION: 0.18.17 + DAGGER_VERSION: 0.18.18 run: | curl -L https://dl.dagger.io/dagger/install.sh | BIN_DIR=$HOME/.local/bin sh - name: Create image and manifest diff --git a/Taskfile.yml b/Taskfile.yml index cb3fbf7..c4cea99 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -202,7 +202,7 @@ tasks: - start-build-network vars: # renovate: datasource=github-tags depName=dagger/dagger versioning=semver - DAGGER_VERSION: 0.18.17 + DAGGER_VERSION: 0.18.18 DAGGER_ENGINE_IMAGE: registry.dagger.io/engine:v{{ .DAGGER_VERSION }} cmds: - > @@ -325,11 +325,12 @@ tasks: env: _EXPERIMENTAL_DAGGER_RUNNER_HOST: docker-container://{{ .DAGGER_ENGINE_CONTAINER_NAME }} cmds: - - | - dagger << "." - ca=$(host | directory . --no-git-auto-ignore | file "certs/ca.pem"); - "dagger/e2e/" | run-ephemeral . --ca $ca --registry {{.REGISTRY_NAME}}:{{.REGISTRY_PORT}} --go-version {{ .GOLANG_IMAGE_VERSION }} - . + - > + GITHUB_REF= dagger call -m dagger/e2e/ run-ephemeral + --source . + --ca certs/ca.pem + --registry {{.REGISTRY_NAME}}:{{.REGISTRY_PORT}} + --go-version {{ .GOLANG_IMAGE_VERSION }} ci: desc: Run the CI pipeline @@ -489,11 +490,9 @@ tasks: set image --image plugin-barman-cloud={{.PLUGIN_IMAGE_NAME}}:{{.IMAGE_VERSION}} set secret --secret plugin-barman-cloud --from-literal SIDECAR_IMAGE={{.SIDECAR_IMAGE_NAME}}:{{.IMAGE_VERSION}} directory directory --path kubernetes export --path manifest-build - - | - dagger << "." - manifestbuild=$(host | directory . | with-directory "manifest-build" $(host | directory manifest-build --no-git-auto-ignore )); - github.com/sagikazarmark/daggerverse/kustomize@${DAGGER_KUSTOMIZE_SHA} | build $manifestbuild --dir "manifest-build" | export manifest.yaml - . + - > + dagger -s call -m github.com/sagikazarmark/daggerverse/kustomize@${DAGGER_KUSTOMIZE_SHA} + build --source . --dir manifest-build export --path manifest.yaml sources: - ./config/**/*.yaml - ./kubernetes/**/*.yaml