Skip to content

Bump template version#592

Open
simu wants to merge 1 commit into
developfrom
template-sync
Open

Bump template version#592
simu wants to merge 1 commit into
developfrom
template-sync

Conversation

@simu
Copy link
Copy Markdown
Member

@simu simu commented Jan 13, 2025

Template version: main (59137bf)

@simu simu added bug Something isn't working template-sync labels Jan 13, 2025
@vshnbot
Copy link
Copy Markdown
Collaborator

vshnbot commented Sep 29, 2025

Component update was only partially successful. Please check the PR carefully.

Rejected patches:

diff a/Makefile.vars.mk b/Makefile.vars.mk	(rejected hunks)
@@ -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
diff a/component/app.jsonnet b/component/app.jsonnet	(rejected hunks)
@@ -6,7 +6,7 @@ local argocd = import 'lib/argocd.libjsonnet';
 local app = argocd.App('appcat', params.namespace);
 
 local appPath =
-  local project = std.get(app, 'spec', { project: 'syn' }).project;
+  local project = std.get(std.get(app, 'spec', {}), 'project', 'syn');
   if project == 'syn' then 'apps' else 'apps-%s' % project;
 
 {

@vshnbot
Copy link
Copy Markdown
Collaborator

vshnbot commented Sep 30, 2025

Component update was only partially successful. Please check the PR carefully.

Rejected patches:

diff a/.github/workflows/test.yaml b/.github/workflows/test.yaml	(rejected hunks)
@@ -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'
@@ -50,7 +50,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
@@ -78,7 +78,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 a/Makefile.vars.mk b/Makefile.vars.mk	(rejected hunks)
@@ -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
diff a/component/app.jsonnet b/component/app.jsonnet	(rejected hunks)
@@ -6,7 +6,7 @@ local argocd = import 'lib/argocd.libjsonnet';
 local app = argocd.App('appcat', params.namespace);
 
 local appPath =
-  local project = std.get(app, 'spec', { project: 'syn' }).project;
+  local project = std.get(std.get(app, 'spec', {}), 'project', 'syn');
   if project == 'syn' then 'apps' else 'apps-%s' % project;
 
 {

@vshnbot
Copy link
Copy Markdown
Collaborator

vshnbot commented Sep 30, 2025

Component update was only partially successful. Please check the PR carefully.

Rejected patches:

diff a/.github/workflows/test.yaml b/.github/workflows/test.yaml	(rejected hunks)
@@ -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'
@@ -50,7 +50,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
@@ -78,7 +78,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 a/Makefile.vars.mk b/Makefile.vars.mk	(rejected hunks)
@@ -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
diff a/component/app.jsonnet b/component/app.jsonnet	(rejected hunks)
@@ -6,7 +6,7 @@ local argocd = import 'lib/argocd.libjsonnet';
 local app = argocd.App('appcat', params.namespace);
 
 local appPath =
-  local project = std.get(app, 'spec', { project: 'syn' }).project;
+  local project = std.get(std.get(app, 'spec', {}), 'project', 'syn');
   if project == 'syn' then 'apps' else 'apps-%s' % project;
 
 {

@vshnbot
Copy link
Copy Markdown
Collaborator

vshnbot commented Oct 2, 2025

Component update was only partially successful. Please check the PR carefully.

Rejected patches:

diff a/.github/workflows/test.yaml b/.github/workflows/test.yaml	(rejected hunks)
@@ -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'
@@ -50,7 +50,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
@@ -78,7 +78,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 a/Makefile.vars.mk b/Makefile.vars.mk	(rejected hunks)
@@ -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
diff a/component/app.jsonnet b/component/app.jsonnet	(rejected hunks)
@@ -6,7 +6,7 @@ local argocd = import 'lib/argocd.libjsonnet';
 local app = argocd.App('appcat', params.namespace);
 
 local appPath =
-  local project = std.get(app, 'spec', { project: 'syn' }).project;
+  local project = std.get(std.get(app, 'spec', {}), 'project', 'syn');
   if project == 'syn' then 'apps' else 'apps-%s' % project;
 
 {

@TheBigLee TheBigLee changed the base branch from master to develop October 13, 2025 14:26
@vshnbot
Copy link
Copy Markdown
Collaborator

vshnbot commented Nov 11, 2025

Component update was only partially successful. Please check the PR carefully.

Rejected patches:

diff a/.github/workflows/test.yaml b/.github/workflows/test.yaml	(rejected hunks)
@@ -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'
@@ -50,7 +50,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
@@ -78,7 +78,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 a/Makefile.vars.mk b/Makefile.vars.mk	(rejected hunks)
@@ -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
diff a/component/app.jsonnet b/component/app.jsonnet	(rejected hunks)
@@ -6,7 +6,7 @@ local argocd = import 'lib/argocd.libjsonnet';
 local app = argocd.App('appcat', params.namespace);
 
 local appPath =
-  local project = std.get(app, 'spec', { project: 'syn' }).project;
+  local project = std.get(std.get(app, 'spec', {}), 'project', 'syn');
   if project == 'syn' then 'apps' else 'apps-%s' % project;
 
 {

@vshnbot
Copy link
Copy Markdown
Collaborator

vshnbot commented May 12, 2026

Component update was only partially successful. Please check the PR carefully.

Rejected patches:

diff a/.github/workflows/test.yaml b/.github/workflows/test.yaml	(rejected hunks)
@@ -17,13 +17,13 @@ jobs:
           - lint_yaml
           - lint_adoc
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
       - name: Run ${{ matrix.command }}
         run: make ${{ matrix.command }}
   editorconfig:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
       - uses: snow-actions/eclint@v1.0.1
         with:
           args: 'check'
@@ -50,7 +50,7 @@ jobs:
       run:
         working-directory: ${{ env.COMPONENT_NAME }}
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
         with:
           path: ${{ env.COMPONENT_NAME }}
       - name: Compile component
@@ -78,7 +78,7 @@ jobs:
       run:
         working-directory: ${{ env.COMPONENT_NAME }}
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
         with:
           path: ${{ env.COMPONENT_NAME }}
       - name: Golden diff
diff a/Makefile.vars.mk b/Makefile.vars.mk	(rejected hunks)
@@ -25,8 +25,8 @@ endif
 DOCKER_ARGS ?= run --rm -u "$$(id -u):$$(id -g)" --userns=$(DOCKER_USERNS) -w /$(COMPONENT_NAME) -e HOME="/$(COMPONENT_NAME)"
 
 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
+JSONNETFMT_ARGS ?= --pad-arrays
+JSONNET_IMAGE   ?= ghcr.io/projectsyn/jsonnet:latest
 JSONNET_DOCKER  ?= $(DOCKER_CMD) $(DOCKER_ARGS) $(root_volume) --entrypoint=jsonnetfmt $(JSONNET_IMAGE)
 
 YAMLLINT_ARGS   ?= --no-warnings
diff a/component/app.jsonnet b/component/app.jsonnet	(rejected hunks)
@@ -6,7 +6,7 @@ local argocd = import 'lib/argocd.libjsonnet';
 local app = argocd.App('appcat', params.namespace);
 
 local appPath =
-  local project = std.get(app, 'spec', { project: 'syn' }).project;
+  local project = std.get(std.get(app, 'spec', {}), 'project', 'syn');
   if project == 'syn' then 'apps' else 'apps-%s' % project;
 
 {

Template version: main (59137bf)
@vshnbot
Copy link
Copy Markdown
Collaborator

vshnbot commented May 12, 2026

Component update was only partially successful. Please check the PR carefully.

Rejected patches:

diff a/.github/workflows/test.yaml b/.github/workflows/test.yaml	(rejected hunks)
@@ -17,13 +17,13 @@ jobs:
           - lint_yaml
           - lint_adoc
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
       - name: Run ${{ matrix.command }}
         run: make ${{ matrix.command }}
   editorconfig:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
       - uses: snow-actions/eclint@v1.0.1
         with:
           args: 'check'
@@ -50,7 +50,7 @@ jobs:
       run:
         working-directory: ${{ env.COMPONENT_NAME }}
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
         with:
           path: ${{ env.COMPONENT_NAME }}
       - name: Compile component
@@ -78,7 +78,7 @@ jobs:
       run:
         working-directory: ${{ env.COMPONENT_NAME }}
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
         with:
           path: ${{ env.COMPONENT_NAME }}
       - name: Golden diff
diff a/Makefile.vars.mk b/Makefile.vars.mk	(rejected hunks)
@@ -25,8 +25,8 @@ endif
 DOCKER_ARGS ?= run --rm -u "$$(id -u):$$(id -g)" --userns=$(DOCKER_USERNS) -w /$(COMPONENT_NAME) -e HOME="/$(COMPONENT_NAME)"
 
 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
+JSONNETFMT_ARGS ?= --pad-arrays
+JSONNET_IMAGE   ?= ghcr.io/projectsyn/jsonnet:latest
 JSONNET_DOCKER  ?= $(DOCKER_CMD) $(DOCKER_ARGS) $(root_volume) --entrypoint=jsonnetfmt $(JSONNET_IMAGE)
 
 YAMLLINT_ARGS   ?= --no-warnings
diff a/component/app.jsonnet b/component/app.jsonnet	(rejected hunks)
@@ -6,7 +6,7 @@ local argocd = import 'lib/argocd.libjsonnet';
 local app = argocd.App('appcat', params.namespace);
 
 local appPath =
-  local project = std.get(app, 'spec', { project: 'syn' }).project;
+  local project = std.get(std.get(app, 'spec', {}), 'project', 'syn');
   if project == 'syn' then 'apps' else 'apps-%s' % project;
 
 {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants