From 61f358c1b24eb14ad9747dec558429f63a093634 Mon Sep 17 00:00:00 2001 From: "Lawrence, Rendall" Date: Mon, 22 Sep 2025 16:36:33 +0300 Subject: [PATCH] fix minio github action --- .github/workflows/build.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 62208ca..47bbeb5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -39,12 +39,12 @@ jobs: --health-timeout 5s --health-retries 5 minio: - image: "minio/minio" + image: "lazybit/minio" ports: [ "9000:9000" ] - options: >- - server - --address - 127.0.0.1:9000 + env: + MINIO_ACCESS_KEY: "minioadmin" + MINIO_SECRET_KEY: "minioadmin" + options: server /data steps: - uses: "actions/checkout@v4" - uses: "actions/setup-go@v5"