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
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-buildx-

- name: Build Docker image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
load: true
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
- name: Push by digest
if: github.event_name != 'pull_request'
id: build
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
tags: |
${{ env.REGISTRY_IMAGE }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test/test_minio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ NETWORK=$(docker inspect misp --format="{{ .HostConfig.NetworkMode }}")
docker run -d --expose 9000 --network $NETWORK -e MINIO_ROOT_USER=$MINIO_ROOT_USER -e MINIO_ROOT_PASSWORD=$MINIO_ROOT_PASSWORD --quiet --name minio quay.io/minio/minio:latest server /data

echo "Ensure MinIO client exists"
curl -o ./mc -# https://dl.min.io/client/mc/release/linux-${MINIO_ARCH}/mc && chmod +x ./mc
curl -L -o ./mc -# https://dl.min.io/client/mc/release/linux-${MINIO_ARCH}/mc && chmod +x ./mc
./mc version

echo "Create bucket"
MINIO_IP=$(docker inspect minio --format="{{ .NetworkSettings.Networks.$NETWORK.IPAddress }}")
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
mysql:
image: mariadb:12.1
image: mariadb:12.2
restart: always
container_name: misp-mysql
tmpfs:
Expand All @@ -14,7 +14,7 @@ services:
MYSQL_ROOT_PASSWORD: password # Please change for production

redis:
image: redis:8.4
image: redis:8.8
restart: always
container_name: misp-redis
volumes:
Expand Down
Loading