From 2a19a96aae28aa440cf14644e6cf4fad3662bb46 Mon Sep 17 00:00:00 2001 From: Rostislav Dugin Date: Sun, 22 Feb 2026 23:43:23 +0300 Subject: [PATCH] FIX (migrations): Fix version of migrations tool goose --- .github/workflows/ci-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index e480bf5..9fcc3cd 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -407,7 +407,7 @@ jobs: - name: Run database migrations run: | cd backend - go install github.com/pressly/goose/v3/cmd/goose@latest + go install github.com/pressly/goose/v3/cmd/goose@v3.24.3 goose up - name: Run Go tests