Skip to content

Commit 7b01b10

Browse files
Merge pull request #749 from kubeflow/main
[pull] main from kubeflow:main
2 parents f203723 + be92b73 commit 7b01b10

File tree

116 files changed

+4832
-880
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+4832
-880
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Go
3030
uses: actions/setup-go@v6
3131
with:
32-
go-version: "1.24"
32+
go-version: "1.25.3"
3333
- name: Build
3434
run: make build/compile
3535
- name: Registry unit tests

.github/workflows/check-db-schema-structs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Go
1919
uses: actions/setup-go@v6
2020
with:
21-
go-version: "1.24.4"
21+
go-version: "1.25.3"
2222
- name: Generate MySQL DB schema structs
2323
run: make gen/gorm/mysql
2424
- name: Check if there are uncommitted file changes
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup Go
3939
uses: actions/setup-go@v6
4040
with:
41-
go-version: "1.24.4"
41+
go-version: "1.25.3"
4242
- name: Generate PostgreSQL DB schema structs
4343
run: make gen/gorm/postgres
4444
- name: Check if there are uncommitted file changes

.github/workflows/controller-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Setup Go
4545
uses: actions/setup-go@v6
4646
with:
47-
go-version: '1.24'
47+
go-version: "1.25.3"
4848

4949
- name: Running Tests
5050
run: |

.github/workflows/first-time-contributor-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
5151
- name: Welcome first-time contributors message
5252
uses: actions/first-interaction@v3
53+
continue-on-error: true
5354
with:
54-
repo_token: ${{ secrets.GITHUB_TOKEN }}
5555
issue_message: |
5656
🎉 **Welcome to the Kubeflow Model Registry!** 🎉
5757
Thanks for opening your first issue! We're happy to have you as part of our community 🚀

.github/workflows/go-mod-tidy-diff-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Go
2222
uses: actions/setup-go@v6
2323
with:
24-
go-version: '1.24'
24+
go-version: "1.25.3"
2525

2626
- name: Cache Go modules
2727
uses: actions/cache@v4

.github/workflows/prepare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Go
1313
uses: actions/setup-go@v6
1414
with:
15-
go-version: "1.24"
15+
go-version: "1.25.3"
1616
- name: Prepare
1717
run: make clean build/prepare
1818
- name: Check if there are uncommitted file changes

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the model-registry binary
2-
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:1.24 AS common
2+
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:1.25 AS common
33
ARG TARGETOS
44
ARG TARGETARCH
55

Dockerfile.odh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the model-registry binary
2-
FROM registry.access.redhat.com/ubi9/go-toolset:1.24 AS builder
2+
FROM registry.access.redhat.com/ubi9/go-toolset:1.25 AS builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests and workspace file

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,11 @@ bin/envtest:
173173

174174
GOLANGCI_LINT ?= ${PROJECT_BIN}/golangci-lint
175175
bin/golangci-lint:
176-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(PROJECT_BIN) v2.0.2
176+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(PROJECT_BIN) v2.6.2
177177

178178
GOVERTER ?= ${PROJECT_BIN}/goverter
179179
bin/goverter:
180-
GOBIN=$(PROJECT_PATH)/bin ${GO} install github.com/jmattheis/goverter/cmd/goverter@v1.8.1
180+
GOBIN=$(PROJECT_PATH)/bin ${GO} install github.com/jmattheis/goverter/cmd/goverter@v1.9.2
181181

182182
YQ ?= ${PROJECT_BIN}/yq
183183
bin/yq:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Model registry provides a central repository for model developers to store and m
4646
8. [UI](clients/ui/README.md)
4747

4848
## Pre-requisites:
49-
- go >= 1.24
49+
- go >= 1.25
5050
- protoc v24.3 - [Protocol Buffers v24.3 Release](https://github.com/protocolbuffers/protobuf/releases/tag/v24.3)
5151
- npm >= 10.2.0 - [Installing Node.js and npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
5252
- Java >= 11.0

0 commit comments

Comments
 (0)