From 92ac8242a8f7f7feb7063f68d66e907c460a0bd2 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Wed, 19 Aug 2026 11:51:09 +0530 Subject: [PATCH] test: pin the server image to 2.4.0 rc.23 is superseded; 2.4.0 is the released image the SDK supports. --- .github/workflows/main.yml | 2 +- __test__/admin.test.ts | 2 +- __test__/index.test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 057ee87..433fe7a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,4 +32,4 @@ jobs: - name: Run integration tests run: pnpm test # Make sure this command runs your integration tests env: - AUTHORIZER_IMAGE: quay.io/authorizer/authorizer:2.4.0-rc.23 + AUTHORIZER_IMAGE: quay.io/authorizer/authorizer:2.4.0 diff --git a/__test__/admin.test.ts b/__test__/admin.test.ts index 18fbef2..3cbd602 100644 --- a/__test__/admin.test.ts +++ b/__test__/admin.test.ts @@ -78,7 +78,7 @@ describe('Integration Tests - AuthorizerAdmin (graphql + rest)', () => { const { args } = buildAuthorizerCliArgs(); container = await new GenericContainer( - process.env.AUTHORIZER_IMAGE || 'quay.io/authorizer/authorizer:2.4.0-rc.23', + process.env.AUTHORIZER_IMAGE || 'quay.io/authorizer/authorizer:2.4.0', ) .withCommand(args) .withExposedPorts(8080) diff --git a/__test__/index.test.ts b/__test__/index.test.ts index 76e0367..7b568bc 100644 --- a/__test__/index.test.ts +++ b/__test__/index.test.ts @@ -123,7 +123,7 @@ describe('Integration Tests - authorizer-js', () => { // Override with AUTHORIZER_IMAGE to test against a different server build // (e.g. a locally built image with newer GraphQL surface). container = await new GenericContainer( - process.env.AUTHORIZER_IMAGE || 'quay.io/authorizer/authorizer:2.4.0-rc.23', + process.env.AUTHORIZER_IMAGE || 'quay.io/authorizer/authorizer:2.4.0', ) .withCommand(args) .withExposedPorts({ container: 8080, host: hostPort })