diff options
author | Earl Warren <109468362+earl-warren@users.noreply.github.com> | 2023-10-03 16:21:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 14:21:14 +0000 |
commit | 2ec0bf3878b5dc7b52e44375c172c723b71cb212 (patch) | |
tree | 0c482d1f29a955ec6047674fd2619ea45bb0eff0 /.github | |
parent | cc5df266808361c1dd3a1d17cbba712826a93d7e (diff) | |
download | gitea-2ec0bf3878b5dc7b52e44375c172c723b71cb212.tar.gz gitea-2ec0bf3878b5dc7b52e44375c172c723b71cb212.zip |
verify MinIO works with bitnami/minio:2023.8.31 (#27022)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pull-db-tests.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/pull-db-tests.yml b/.github/workflows/pull-db-tests.yml index a6fb85937c..22b2600c96 100644 --- a/.github/workflows/pull-db-tests.yml +++ b/.github/workflows/pull-db-tests.yml @@ -31,10 +31,10 @@ jobs: minio: # as github actions doesn't support "entrypoint", we need to use a non-official image # that has a custom entrypoint set to "minio server /data" - image: bitnami/minio:2021.3.17 + image: bitnami/minio:2023.8.31 env: - MINIO_ACCESS_KEY: 123456 - MINIO_SECRET_KEY: 12345678 + MINIO_ROOT_USER: 123456 + MINIO_ROOT_PASSWORD: 12345678 ports: - "9000:9000" steps: |