From d8dec91c6ddd55060c089db2d8efec4d53c8ebf2 Mon Sep 17 00:00:00 2001 From: MagzhanArtykov Date: Wed, 23 Oct 2024 13:21:02 +0500 Subject: [PATCH] CIRC-2163 Upgrade to RMB v35.3.0 --- .github/workflows/postgres.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/postgres.yml 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 }}