Skip to content

Commit

Permalink
fix: minio pointing to wrong version
Browse files Browse the repository at this point in the history
  • Loading branch information
kafkaphoenix committed Dec 16, 2024
1 parent dbcdbfc commit cac6691
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ protos: ## Generate proto files

.PHONY: generate_mocks
generate_mocks: ## Generate mocks
go generate ./... && cd -
go generate ./...

.PHONY: tidy
tidy: ## Run golangci-lint, goimports and gofmt
golangci-lint run ./... --config .github/.golangci.yml && goimports -w . && gofmt -s -w -e -d . && cd -
golangci-lint run ./... --config .github/.golangci.yml && goimports -w . && gofmt -s -w -e -d .

.PHONY: tests
tests: ## Run integration and unit tests
Expand Down
2 changes: 1 addition & 1 deletion sdk/model-registry/model_registry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func (s *SdkModelRegistryTestSuite) getContainer() testcontainers.Container {
ctx := context.Background()

req := testcontainers.ContainerRequest{
Image: "minio/minio:latest",
Image: "minio/minio:RELEASE.2023-09-30T07-02-29Z",
ExposedPorts: []string{"9000/tcp"},
Cmd: []string{
"server",
Expand Down

0 comments on commit cac6691

Please sign in to comment.