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/devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 1
-
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-8.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -29,10 +29,10 @@ jobs:
type=semver,pattern={{major}}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -43,7 +43,7 @@ jobs:
echo "VERSION=${GITHUB_REF##*/v}" >> $GITHUB_ENV
-
name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: true
context: .
Expand Down
14 changes: 9 additions & 5 deletions 8.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# NOTE: Most of the file is borrowed from https://github.com/docker-library/mysql/blob/master/8.0/Dockerfile.debian

FROM debian:12.10-slim
FROM debian:12.11-slim

ARG VERSION=0.0.0

# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-client_8.0.43-1debian12_amd64.de
ARG MYSQL_MAJOR=8.0
ARG MYSQL_VERSION=8.0.43-1debian12

ENV VERSION=${VERSION}
ENV MYSQL_MAJOR=${MYSQL_MAJOR}
ENV MYSQL_VERSION=${MYSQL_VERSION}

LABEL version="${VERSION}" \
description="MySQL 8 client for export and import databases easily using Docker." \
Expand Down Expand Up @@ -78,10 +85,7 @@ RUN set -eux; \
rm -rf "$GNUPGHOME" \
&& true

ENV MYSQL_MAJOR=8.0
ENV MYSQL_VERSION=8.0.43-1debian12

# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-client_8.0.43-1debian12_amd64.deb
# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/
RUN set -eux \
&& echo 'deb [ signed-by=/etc/apt/keyrings/mysql.gpg ] http://repo.mysql.com/apt/debian/ bookworm mysql-8.0' > /etc/apt/sources.list.d/mysql.list \
&& true
Expand Down