File tree 4 files changed +18
-18
lines changed
4 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -19,30 +19,30 @@ jobs:
19
19
# - linux/arm64
20
20
# - linux/arm/v7
21
21
# - linux/arm/v6
22
- runs-on : ubuntu-20 .04
22
+ runs-on : ubuntu-22 .04
23
23
steps :
24
24
-
25
25
name : Checkout
26
- uses : actions/checkout@v3
26
+ uses : actions/checkout@v4
27
27
with :
28
28
fetch-depth : 1
29
29
-
30
30
name : Cache Docker layers
31
- uses : actions/cache@v3
31
+ uses : actions/cache@v4
32
32
with :
33
33
path : /tmp/.buildx-cache
34
34
key : ${{ matrix.mysql }}-${{ matrix.arch }}-buildx-${{ github.sha }}
35
35
restore-keys : |
36
36
${{ matrix.mysql }}-${{ matrix.arch }}-buildx-
37
37
-
38
38
name : Set up QEMU
39
- uses : docker/setup-qemu-action@v2
39
+ uses : docker/setup-qemu-action@v3
40
40
-
41
41
name : Set up Docker Buildx
42
- uses : docker/setup-buildx-action@v2
42
+ uses : docker/setup-buildx-action@v3
43
43
-
44
44
name : Build and Test
45
- uses : docker/build-push-action@v4
45
+ uses : docker/build-push-action@v6
46
46
with :
47
47
push : false
48
48
context : .
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
docker :
12
- runs-on : ubuntu-20 .04
12
+ runs-on : ubuntu-22 .04
13
13
steps :
14
14
-
15
15
name : Checkout
16
- uses : actions/checkout@v3
16
+ uses : actions/checkout@v4
17
17
-
18
18
name : Set up QEMU
19
- uses : docker/setup-qemu-action@v2
19
+ uses : docker/setup-qemu-action@v3
20
20
-
21
21
name : Docker meta
22
22
id : meta
23
- uses : docker/metadata-action@v4
23
+ uses : docker/metadata-action@v5
24
24
with :
25
25
images : joseluisq/mysql-client
26
26
tags : |
Original file line number Diff line number Diff line change 1
1
# NOTE: Most of the file is borrowed from https://github.com/docker-library/mysql/blob/master/8.0/Dockerfile.debian
2
2
3
- FROM debian:12.9 -slim
3
+ FROM debian:12.10 -slim
4
4
5
5
ARG VERSION=0.0.0
6
6
ENV VERSION=${VERSION}
@@ -23,7 +23,7 @@ RUN set -eux \
23
23
24
24
# add gosu for easy step-down from root
25
25
# https://github.com/tianon/gosu/releases
26
- ENV GOSU_VERSION 1.17
26
+ ENV GOSU_VERSION= 1.17
27
27
28
28
RUN set -eux \
29
29
&& savedAptMark="$(apt-mark showmanual)" \
@@ -78,10 +78,10 @@ RUN set -eux; \
78
78
rm -rf "$GNUPGHOME" \
79
79
&& true
80
80
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
83
83
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
85
85
RUN set -eux \
86
86
&& 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 \
87
87
&& true
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ For more details see the official [MySQL 8 Client Programs](https://dev.mysql.co
34
34
35
35
``` sh
36
36
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)
38
38
```
39
39
40
40
## User privileges
@@ -95,7 +95,7 @@ docker run --rm -it \
95
95
96
96
# MySQL 8 Client - Exporter
97
97
# =========================
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)
99
99
100
100
# Exporting database `mydb` into a SQL script file...
101
101
# Output file: database_name.sql (SQL Text)
@@ -176,7 +176,7 @@ docker run --rm -it \
176
176
177
177
# MySQL 8 Client - Importer
178
178
# =========================
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)
180
180
181
181
# Importing a SQL script file into database `mydb`...
182
182
# Input file: database_name.sql (4.0K / SQL Text)
You can’t perform that action at this time.
0 commit comments