diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 83c0bf92..9200f309 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,9 +20,10 @@ jobs: services: s3: - image: bitnami/minio + image: minio/minio ports: - 9000:9000 + args: ["server", "/data"] steps: - name: Checkout repository diff --git a/test/src/cognitect/aws/integration/s3_test.cljc b/test/src/cognitect/aws/integration/s3_test.cljc index 80dc09b8..71b7b5f0 100644 --- a/test/src/cognitect/aws/integration/s3_test.cljc +++ b/test/src/cognitect/aws/integration/s3_test.cljc @@ -117,8 +117,8 @@ :hostname "localhost" :port 9000} :credentials-provider (creds/basic-credentials-provider - {:access-key-id "minio" - :secret-access-key "miniosecret"})})] + {:access-key-id "minioadmin" + :secret-access-key "minioadmin"})})] (testing (str "with http client " (class %)) (test-s3-client s3)))))