From 7ff1d426dfd0b961a46c7bab5ea7e7a480bc9769 Mon Sep 17 00:00:00 2001 From: simu Date: Thu, 2 Oct 2025 07:09:21 +0000 Subject: [PATCH] Update from template Template version: main (84a7c63) --- .cruft.json | 4 ++-- .github/workflows/release.yaml | 2 +- .github/workflows/test.yaml | 8 ++++---- Makefile.vars.mk | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.cruft.json b/.cruft.json index b3a5a4d..24e7c99 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "https://github.com/projectsyn/commodore-component-template.git", - "commit": "98d16f99766e6c6d97322dbe42e058f0e2bf73d0", + "commit": "84a7c63ca26492da555344c23ccddac302ba0bb2", "checkout": "main", "context": { "cookiecutter": { @@ -25,7 +25,7 @@ "github_name": "component-external-secrets-operator", "github_url": "https://github.com/projectsyn/component-external-secrets-operator", "_template": "https://github.com/projectsyn/commodore-component-template.git", - "_commit": "98d16f99766e6c6d97322dbe42e058f0e2bf73d0" + "_commit": "84a7c63ca26492da555344c23ccddac302ba0bb2" } }, "directory": null diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8cf7be4..b0eac75 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: "0" - name: Build changelog from PRs with labels diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index edaefb7..eb6609d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,13 +17,13 @@ jobs: - lint_yaml - lint_adoc steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run ${{ matrix.command }} run: make ${{ matrix.command }} editorconfig: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: snow-actions/eclint@v1.0.1 with: args: 'check' @@ -38,7 +38,7 @@ jobs: run: working-directory: ${{ env.COMPONENT_NAME }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: path: ${{ env.COMPONENT_NAME }} - name: Compile component @@ -54,7 +54,7 @@ jobs: run: working-directory: ${{ env.COMPONENT_NAME }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: path: ${{ env.COMPONENT_NAME }} - name: Golden diff diff --git a/Makefile.vars.mk b/Makefile.vars.mk index fc07dc0..ce69322 100644 --- a/Makefile.vars.mk +++ b/Makefile.vars.mk @@ -26,7 +26,7 @@ DOCKER_ARGS ?= run --rm -u "$$(id -u):$$(id -g)" --userns=$(DOCKER_USERNS) -w /$ JSONNET_FILES ?= $(shell find . -type f -not -path './vendor/*' \( -name '*.*jsonnet' -or -name '*.libsonnet' \)) JSONNETFMT_ARGS ?= --in-place --pad-arrays -JSONNET_IMAGE ?= docker.io/bitnami/jsonnet:latest +JSONNET_IMAGE ?= ghcr.io/projectsyn/jsonnet:latest JSONNET_DOCKER ?= $(DOCKER_CMD) $(DOCKER_ARGS) $(root_volume) --entrypoint=jsonnetfmt $(JSONNET_IMAGE) YAMLLINT_ARGS ?= --no-warnings