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 })