Skip to content

Commit 95042f9

Browse files
committed
v8.0.42
- debian 12.10-slim - mysql 8.0.42
1 parent 0787b02 commit 95042f9

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/devel.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,30 +19,30 @@ jobs:
1919
# - linux/arm64
2020
# - linux/arm/v7
2121
# - linux/arm/v6
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-22.04
2323
steps:
2424
-
2525
name: Checkout
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 1
2929
-
3030
name: Cache Docker layers
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: /tmp/.buildx-cache
3434
key: ${{ matrix.mysql }}-${{ matrix.arch }}-buildx-${{ github.sha }}
3535
restore-keys: |
3636
${{ matrix.mysql }}-${{ matrix.arch }}-buildx-
3737
-
3838
name: Set up QEMU
39-
uses: docker/setup-qemu-action@v2
39+
uses: docker/setup-qemu-action@v3
4040
-
4141
name: Set up Docker Buildx
42-
uses: docker/setup-buildx-action@v2
42+
uses: docker/setup-buildx-action@v3
4343
-
4444
name: Build and Test
45-
uses: docker/build-push-action@v4
45+
uses: docker/build-push-action@v6
4646
with:
4747
push: false
4848
context: .

.github/workflows/release-8.0.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ on:
99

1010
jobs:
1111
docker:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
-
1515
name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
-
1818
name: Set up QEMU
19-
uses: docker/setup-qemu-action@v2
19+
uses: docker/setup-qemu-action@v3
2020
-
2121
name: Docker meta
2222
id: meta
23-
uses: docker/metadata-action@v4
23+
uses: docker/metadata-action@v5
2424
with:
2525
images: joseluisq/mysql-client
2626
tags: |

8.0/Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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.9-slim
3+
FROM debian:12.10-slim
44

55
ARG VERSION=0.0.0
66
ENV VERSION=${VERSION}
@@ -23,7 +23,7 @@ RUN set -eux \
2323

2424
# add gosu for easy step-down from root
2525
# https://github.com/tianon/gosu/releases
26-
ENV GOSU_VERSION 1.17
26+
ENV GOSU_VERSION=1.17
2727

2828
RUN set -eux \
2929
&& savedAptMark="$(apt-mark showmanual)" \
@@ -78,10 +78,10 @@ RUN set -eux; \
7878
rm -rf "$GNUPGHOME" \
7979
&& true
8080

81-
ENV MYSQL_MAJOR 8.0
82-
ENV MYSQL_VERSION 8.0.41-1debian12
81+
ENV MYSQL_MAJOR=8.0
82+
ENV MYSQL_VERSION=8.0.42-1debian12
8383

84-
# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-client_8.0.41-1debian12_amd64.deb
84+
# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-client_8.0.42-1debian12_amd64.deb
8585
RUN set -eux \
8686
&& 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 \
8787
&& true

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ For more details see the official [MySQL 8 Client Programs](https://dev.mysql.co
3434

3535
```sh
3636
docker run -it --rm joseluisq/mysql-client mysql --version
37-
# mysql Ver 8.0.41 for Linux on x86_64 (MySQL Community Server - GPL)
37+
# mysql Ver 8.0.42 for Linux on x86_64 (MySQL Community Server - GPL)
3838
```
3939

4040
## User privileges
@@ -95,7 +95,7 @@ docker run --rm -it \
9595

9696
# MySQL 8 Client - Exporter
9797
# =========================
98-
# mysqldump Ver 8.0.41 for Linux on x86_64 (MySQL Community Server - GPL)
98+
# mysqldump Ver 8.0.42 for Linux on x86_64 (MySQL Community Server - GPL)
9999

100100
# Exporting database `mydb` into a SQL script file...
101101
# Output file: database_name.sql (SQL Text)
@@ -176,7 +176,7 @@ docker run --rm -it \
176176

177177
# MySQL 8 Client - Importer
178178
# =========================
179-
# mysql Ver 8.0.41 for Linux on x86_64 (MySQL Community Server - GPL)
179+
# mysql Ver 8.0.42 for Linux on x86_64 (MySQL Community Server - GPL)
180180

181181
# Importing a SQL script file into database `mydb`...
182182
# Input file: database_name.sql (4.0K / SQL Text)

0 commit comments

Comments
 (0)