Skip to content

Commit a9f8f5f

Browse files
authored
chore: update dependencies 17-08-2025 (#5)
1 parent 6ab7332 commit a9f8f5f

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

.github/workflows/devel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
-
2525
name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 1
2929
-

.github/workflows/release-8.0.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
-
1515
name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
-
1818
name: Set up QEMU
1919
uses: docker/setup-qemu-action@v3
@@ -29,10 +29,10 @@ jobs:
2929
type=semver,pattern={{major}}
3030
-
3131
name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@v2
32+
uses: docker/setup-buildx-action@v3
3333
-
3434
name: Login to DockerHub
35-
uses: docker/login-action@v2
35+
uses: docker/login-action@v3
3636
with:
3737
username: ${{ secrets.DOCKERHUB_USERNAME }}
3838
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -43,7 +43,7 @@ jobs:
4343
echo "VERSION=${GITHUB_REF##*/v}" >> $GITHUB_ENV
4444
-
4545
name: Build and push
46-
uses: docker/build-push-action@v4
46+
uses: docker/build-push-action@v6
4747
with:
4848
push: true
4949
context: .

8.0/Dockerfile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
# NOTE: Most of the file is borrowed from https://github.com/docker-library/mysql/blob/master/8.0/Dockerfile.debian
22

3-
FROM debian:12.10-slim
3+
FROM debian:12.11-slim
44

55
ARG VERSION=0.0.0
6+
7+
# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-client_8.0.43-1debian12_amd64.de
8+
ARG MYSQL_MAJOR=8.0
9+
ARG MYSQL_VERSION=8.0.43-1debian12
10+
611
ENV VERSION=${VERSION}
12+
ENV MYSQL_MAJOR=${MYSQL_MAJOR}
13+
ENV MYSQL_VERSION=${MYSQL_VERSION}
714

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

81-
ENV MYSQL_MAJOR=8.0
82-
ENV MYSQL_VERSION=8.0.43-1debian12
83-
84-
# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-client_8.0.43-1debian12_amd64.deb
88+
# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/
8589
RUN set -eux \
8690
&& 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 \
8791
&& true

0 commit comments

Comments
 (0)