diff --git a/.github/workflows/migrations.yml b/.github/workflows/migrations.yml index 525dd04c94f..6ca383f87d0 100644 --- a/.github/workflows/migrations.yml +++ b/.github/workflows/migrations.yml @@ -1,6 +1,6 @@ name: Reminder to update seed data after migration # If this workflow fails, it is a hint that you forgot to update the seed data after a migration. -# It is only a hint, because it only checks if you updated the migration collection in the seed data. +# It is only a hint, because it only checks if you updated the migration collection in the seed data. # It is not a check that you updated the whole seed data correctly. # See the documentation for advice: https://documentation.dbildungscloud.dev/docs/schulcloud-server/Migrations#committing-a-migration @@ -11,7 +11,7 @@ on: branches: [ main ] env: - MONGODB_VERSION: 5.0 + MONGODB_VERSION: 6.0 NODE_VERSION: '18' jobs: migration: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2d759947fea..170ef80cd1d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ permissions: contents: read env: - MONGODB_VERSION: 5.0 + MONGODB_VERSION: 6.0 NODE_VERSION: '18' jobs: feathers_tests_cov: diff --git a/apps/server/test/globalSetup.ts b/apps/server/test/globalSetup.ts index 68b50329bb9..0928ed73cf9 100644 --- a/apps/server/test/globalSetup.ts +++ b/apps/server/test/globalSetup.ts @@ -3,7 +3,7 @@ import { MongoMemoryServer } from 'mongodb-memory-server-global'; export = async function globalSetup() { const instance = await MongoMemoryServer.create({ binary: { - version: '5.0.26', + version: '6.0.16', }, }); const uri = instance.getUri();