diff --git a/.github/workflows/postgres.yml b/.github/workflows/postgres.yml
deleted file mode 100644
index 1d4d0f80f2..0000000000
--- a/.github/workflows/postgres.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: postgres
-on:
-  workflow_dispatch:
-    inputs:
-      postgres:
-        description: "List of postgres container images, to be injected as TESTCONTAINERS_POSTGRES_IMAGE"
-        default: '["postgres:16-alpine", "postgres:18-alpine"]'
-jobs:
-  build:
-    runs-on: ubuntu-latest
-    strategy:
-      matrix:
-        postgres: ${{ fromJSON(github.event.inputs.postgres) }}
-      fail-fast: false
-    steps:
-      - uses: actions/checkout@v4
-        with:
-          submodules: true
-      - uses: actions/setup-java@v4
-        with:
-          distribution: 'temurin'
-          java-version: '17'
-          cache: maven
-      - run: mvn --batch-mode verify
-        env:
-          TESTCONTAINERS_POSTGRES_IMAGE: ${{ matrix.postgres }}