From 924c8981e8c654187e7c639d41122d49762a14d5 Mon Sep 17 00:00:00 2001 From: Atsushi Watanabe Date: Mon, 29 Jun 2026 12:42:55 +0900 Subject: [PATCH 1/2] Migrate localstack to floci --- .github/workflows/ci.yml | 5 ++--- Makefile | 6 +++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a8bd67..453f5a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: env: # These dummy credentials are necessary for running tests against - # localstack s3 service + # floci s3 service AWS_ACCESS_KEY_ID: foo AWS_SECRET_ACCESS_KEY: bar jobs: @@ -31,8 +31,7 @@ jobs: run: | # Start mock s3 service make s3-bg - while ! curl http://localhost:4572; do sleep 1; done - sleep 5 + sleep 1 # Set up fixture S3 files make fixture make cover # run test with coverage diff --git a/Makefile b/Makefile index 1aef4f4..04decfe 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -LOCALSTACK_VERSION = 4.12.0 +FLOCI_VERSION = 1.5.28 .PHONY: test test: @@ -24,11 +24,11 @@ cover: .PHONY: s3 s3: - docker run -p 4572:4566 -e SERVICES=s3 localstack/localstack:$(LOCALSTACK_VERSION) + docker run -p 4572:4566 -e SERVICES=s3 floci/floci:$(FLOCI_VERSION) .PHONY: s3-bg s3-bg: - docker run -d -p 4572:4566 -e SERVICES=s3 localstack/localstack:$(LOCALSTACK_VERSION) + docker run -d -p 4572:4566 -e SERVICES=s3 floci/floci:$(FLOCI_VERSION) .PHONY: fixture fixture: From e39481d3f3fdbe174cb1bceb19a2ba97361bbc58 Mon Sep 17 00:00:00 2001 From: Atsushi Watanabe Date: Mon, 29 Jun 2026 13:03:25 +0900 Subject: [PATCH 2/2] Update renovate config --- renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index c605a27..9c5f811 100644 --- a/renovate.json +++ b/renovate.json @@ -10,10 +10,10 @@ "/^Makefile$/" ], "matchStrings": [ - "LOCALSTACK_VERSION\\s*=\\s*(?.*)" + "FLOCI_VERSION\\s*=\\s*(?.*)" ], "datasourceTemplate": "docker", - "depNameTemplate": "localstack/localstack", + "depNameTemplate": "floci/floci", "versioningTemplate": "docker" } ],