Skip to content

Commit 6307757

Browse files
refactor: modules structure (#60)
* refactor: move registry_auth package to pkg * chore: bump semver to v0.2.5 * chore: update dependencies and CI version to 0.19.4
1 parent 5a808a0 commit 6307757

10 files changed

Lines changed: 22 additions & 21 deletions

File tree

.dagger/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module dagger/cuestomize
33
go 1.24.4
44

55
require (
6-
github.com/99designs/gqlgen v0.17.80
6+
github.com/99designs/gqlgen v0.17.81
77
github.com/Khan/genqlient v0.8.1
88
github.com/vektah/gqlparser/v2 v2.5.30
99
go.opentelemetry.io/otel v1.38.0
@@ -21,7 +21,7 @@ require (
2121
go.opentelemetry.io/otel/trace v1.38.0
2222
go.opentelemetry.io/proto/otlp v1.8.0
2323
golang.org/x/sync v0.17.0
24-
google.golang.org/grpc v1.75.1
24+
google.golang.org/grpc v1.76.0
2525
)
2626

2727
require (

.dagger/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/99designs/gqlgen v0.17.80 h1:S64VF9SK+q3JjQbilgdrM0o4iFQgB54mVQ3QvXEO4Ek=
2-
github.com/99designs/gqlgen v0.17.80/go.mod h1:vgNcZlLwemsUhYim4dC1pvFP5FX0pr2Y+uYUoHFb1ig=
1+
github.com/99designs/gqlgen v0.17.81 h1:kCkN/xVyRb5rEQpuwOHRTYq83i0IuTQg9vdIiwEerTs=
2+
github.com/99designs/gqlgen v0.17.81/go.mod h1:vgNcZlLwemsUhYim4dC1pvFP5FX0pr2Y+uYUoHFb1ig=
33
github.com/Khan/genqlient v0.8.1 h1:wtOCc8N9rNynRLXN3k3CnfzheCUNKBcvXmVv5zt6WCs=
44
github.com/Khan/genqlient v0.8.1/go.mod h1:R2G6DzjBvCbhjsEajfRjbWdVglSH/73kSivC9TLWVjU=
55
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883 h1:bvNMNQO63//z+xNgfBlViaCIJKLlCJ6/fmUseuG0wVQ=
@@ -81,8 +81,8 @@ google.golang.org/genproto/googleapis/api v0.0.0-20250825161204-c5933d9347a5 h1:
8181
google.golang.org/genproto/googleapis/api v0.0.0-20250825161204-c5933d9347a5/go.mod h1:j3QtIyytwqGr1JUDtYXwtMXWPKsEa5LtzIFN1Wn5WvE=
8282
google.golang.org/genproto/googleapis/rpc v0.0.0-20250825161204-c5933d9347a5 h1:eaY8u2EuxbRv7c3NiGK0/NedzVsCcV6hDuU5qPX5EGE=
8383
google.golang.org/genproto/googleapis/rpc v0.0.0-20250825161204-c5933d9347a5/go.mod h1:M4/wBTSeyLxupu3W3tJtOgB14jILAS/XWPSSa3TAlJc=
84-
google.golang.org/grpc v1.75.1 h1:/ODCNEuf9VghjgO3rqLcfg8fiOP0nSluljWFlDxELLI=
85-
google.golang.org/grpc v1.75.1/go.mod h1:JtPAzKiq4v1xcAB2hydNlWI2RnF85XXcV0mhKXr2ecQ=
84+
google.golang.org/grpc v1.76.0 h1:UnVkv1+uMLYXoIz6o7chp59WfQUYA2ex/BXQ9rHZu7A=
85+
google.golang.org/grpc v1.76.0/go.mod h1:Ju12QI8M6iQJtbcsV+awF5a4hfJMLi4X0JLo94ULZ6c=
8686
google.golang.org/protobuf v1.36.9 h1:w2gp2mA27hUeUzj9Ex9FBjsBm40zfaDtEWow293U7Iw=
8787
google.golang.org/protobuf v1.36.9/go.mod h1:fuxRtAxBytpl4zzqUh6/eyUujkJdNiuEkXntxiD/uRU=
8888
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

.github/workflows/ci-dagger.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Run pipeline
2121
uses: dagger/dagger-for-github@v8.2.0
2222
with:
23-
version: "0.19.0"
23+
version: "0.19.4"
2424
verb: call
2525
args: golangci-lint-run
2626

@@ -36,7 +36,7 @@ jobs:
3636
- name: Run pipeline
3737
uses: dagger/dagger-for-github@v8.2.0
3838
with:
39-
version: "0.19.0"
39+
version: "0.19.4"
4040
verb: call
4141
args: test-with-coverage
4242

@@ -52,7 +52,7 @@ jobs:
5252
- name: Run pipeline
5353
uses: dagger/dagger-for-github@v8.2.0
5454
with:
55-
version: "0.19.0"
55+
version: "0.19.4"
5656
verb: call
5757
args: e-2-e-test
5858

@@ -68,6 +68,6 @@ jobs:
6868
- name: Build image
6969
uses: dagger/dagger-for-github@v8.2.0
7070
with:
71-
version: "0.19.0"
71+
version: "0.19.4"
7272
verb: call
7373
args: build

.github/workflows/ci-merge.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Build image
1818
uses: dagger/dagger-for-github@v8.2.0
1919
with:
20-
version: "0.19.0"
20+
version: "0.19.4"
2121
verb: call
2222
args: build
2323

@@ -32,7 +32,7 @@ jobs:
3232
- name: Run pipeline
3333
uses: dagger/dagger-for-github@v8.2.0
3434
with:
35-
version: "0.19.0"
35+
version: "0.19.4"
3636
verb: call
3737
args: test-with-coverage
3838

@@ -47,7 +47,7 @@ jobs:
4747
- name: Run pipeline
4848
uses: dagger/dagger-for-github@v8.2.0
4949
with:
50-
version: "0.19.0"
50+
version: "0.19.4"
5151
verb: call
5252
args: e-2-e-test
5353

@@ -68,6 +68,6 @@ jobs:
6868
GITHUB_USER: ${{ github.actor }}
6969
REPOSITORY_PREFIX: ${{ github.repository }}/cuemodules/cuestomize-examples
7070
with:
71-
version: "0.19.0"
71+
version: "0.19.4"
7272
verb: call
7373
args: publish-examples --username="$GITHUB_USER" --password=env:GITHUB_TOKEN --repositoryPrefix="$REPOSITORY_PREFIX"

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
LATEST: ${{ needs.prep.outputs.latest }}
6363
REPOSITORY: workday/cuestomize
6464
with:
65-
version: "0.19.0"
65+
version: "0.19.4"
6666
verb: call
6767
args: build-and-publish --repository="$REPOSITORY" --tag="$TAG" --also-tag-as-latest="$LATEST" --username="$GITHUB_USER" --password=env:GITHUB_TOKEN --platforms=linux/amd64,linux/arm64
6868

@@ -86,6 +86,6 @@ jobs:
8686
TAG: ${{ needs.prep.outputs.tag_name }}
8787
LATEST: ${{ needs.prep.outputs.latest }}
8888
with:
89-
version: "0.19.0"
89+
version: "0.19.4"
9090
verb: call
9191
args: publish-examples --username="$GITHUB_USER" --password=env:GITHUB_TOKEN --tag="$TAG" --latest="$LATEST" --repositoryPrefix="$REPOSITORY_PREFIX"

.github/workflows/renovate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2222
with:
23-
version: "0.19.0"
23+
version: "0.19.4"
2424
verb: call
2525
args: renovate --github-token=env://GITHUB_TOKEN

api/krm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77

88
"cuelang.org/go/cue"
9-
registryauth "github.com/Workday/cuestomize/internal/pkg/registry_auth"
9+
registryauth "github.com/Workday/cuestomize/pkg/registry_auth"
1010
"github.com/go-logr/logr"
1111
corev1 "k8s.io/api/core/v1"
1212
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

dagger.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "cuestomize",
3-
"engineVersion": "v0.19.0",
3+
"engineVersion": "v0.19.4",
44
"sdk": {
55
"source": "go"
66
},
7-
"source": ".dagger"
7+
"source": ".dagger",
8+
"disableDefaultFunctionCaching": true
89
}

semver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.4
1+
0.2.5

0 commit comments

Comments
 (0)