File tree Expand file tree Collapse file tree 4 files changed +18
-18
lines changed Expand file tree Collapse file tree 4 files changed +18
-18
lines changed Original file line number Diff line number Diff 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 : .
Original file line number Diff line number Diff line change 99
1010jobs :
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 : |
Original file line number Diff line number Diff line change 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
55ARG VERSION=0.0.0
66ENV 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
2828RUN 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
8585RUN 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
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
3434
3535``` sh
3636docker 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)
You can’t perform that action at this time.
0 commit comments