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"