Bump template version#592
Open
simu wants to merge 1 commit into
Open
Conversation
861d498 to
c824de4
Compare
Collaborator
|
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-warningsdiff 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;
{ |
c824de4 to
bdd717c
Compare
Collaborator
|
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 diffdiff 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-warningsdiff 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;
{ |
bdd717c to
da317fb
Compare
Collaborator
|
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 diffdiff 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-warningsdiff 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;
{ |
Collaborator
|
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 diffdiff 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-warningsdiff 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;
{ |
d74d7d3 to
2f9e8bb
Compare
Collaborator
|
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 diffdiff 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-warningsdiff 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;
{ |
Collaborator
|
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 diffdiff 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-warningsdiff 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)
Collaborator
|
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 diffdiff 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-warningsdiff 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;
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Template version: main (59137bf)