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/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'v[0-9]+.[0-9]+.[0-9]+-*'
jobs:
publish:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
NODE_ENV: development
JIRA_BASE_URL: https://educandu.atlassian.net
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- '**'
jobs:
verify:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
NODE_ENV: development
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/maildev-container.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { noop } from './helpers.js';
import { DEFAULT_STARTUP_GRACE_PERIOD, DockerContainer } from './docker-container.js';

const DEFAULT_MAILDEV_CONTAINER_NAME = 'maildev';
const DEFAULT_MAILDEV_IMAGE = 'maildev/maildev:2.1.0';
const DEFAULT_MAILDEV_IMAGE = 'educandu/maildev:2.1.0';

export class MaildevContainer extends DockerContainer {
constructor({
Expand Down
2 changes: 1 addition & 1 deletion src/minio-container.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ensureMinioBucketExists } from './minio-helper.js';
import { DEFAULT_STARTUP_GRACE_PERIOD, DockerContainer } from './docker-container.js';

const DEFAULT_MINIO_CONTAINER_NAME = 'minio';
const DEFAULT_MINIO_IMAGE = 'bitnami/minio:2023.12.6';
const DEFAULT_MINIO_IMAGE = 'educandu/minio:2023.12.6';

export class MinioContainer extends DockerContainer {
constructor({
Expand Down
Loading