Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion __test__/admin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion __test__/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 })
Expand Down
Loading