File tree Expand file tree Collapse file tree 3 files changed +14
-10
lines changed Expand file tree Collapse file tree 3 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 2323 steps :
2424 -
2525 name : Checkout
26- uses : actions/checkout@v4
26+ uses : actions/checkout@v5
2727 with :
2828 fetch-depth : 1
2929 -
Original file line number Diff line number Diff line change 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 }}
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 : .
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.10 -slim
3+ FROM debian:12.11 -slim
44
55ARG 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+
611ENV VERSION=${VERSION}
12+ ENV MYSQL_MAJOR=${MYSQL_MAJOR}
13+ ENV MYSQL_VERSION=${MYSQL_VERSION}
714
815LABEL 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/
8589RUN 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
You can’t perform that action at this time.
0 commit comments