From a1d29ea230b46bb97bf1e54823ec867869ec92ed Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 13:48:46 +0000 Subject: [PATCH] fix(deps): update flyway/flyway docker tag to v10.21 --- .github/workflows/workflow.yml | 4 ++-- migrations/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 3991bbb..8626a77 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -38,7 +38,7 @@ jobs: matrix: postgres-version: [ "14", "15", "16" ] runs-on: ubuntu-latest - container: flyway/flyway:10.20 + container: flyway/flyway:10.21 services: postgres: image: postgres:${{ matrix.postgres-version }} @@ -56,7 +56,7 @@ jobs: test-migrations-sqlite: runs-on: ubuntu-latest - container: flyway/flyway:10.20 + container: flyway/flyway:10.21 steps: - uses: actions/checkout@v4 - run: flyway migrate -skipCheckForUpdate diff --git a/migrations/Dockerfile b/migrations/Dockerfile index 8ae60c0..d9b9d0c 100644 --- a/migrations/Dockerfile +++ b/migrations/Dockerfile @@ -1,4 +1,4 @@ -FROM flyway/flyway:10.20 +FROM flyway/flyway:10.21 LABEL org.opencontainers.image.source = "https://github.com/preparingforexams/rate_limiter"