Skip to content

Commit 3231159

Browse files
committed
v1.7.0
- alpine 3.18.9 - mariadb-client 10.11.8 - enve 1.5.1 - several ci dependency updates
1 parent 14870e3 commit 3231159

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/devel.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,26 @@ jobs:
2020
steps:
2121
-
2222
name: Checkout
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 1
2626
-
2727
name: Cache Docker layers
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
with:
3030
path: /tmp/.buildx-cache
3131
key: alpine-mysql-client-${{ matrix.arch }}-buildx-${{ github.sha }}
3232
restore-keys: |
3333
alpine-mysql-client-${{ matrix.arch }}-buildx-
3434
-
3535
name: Set up QEMU
36-
uses: docker/setup-qemu-action@v2
36+
uses: docker/setup-qemu-action@v3
3737
-
3838
name: Set up Docker Buildx
39-
uses: docker/setup-buildx-action@v2
39+
uses: docker/setup-buildx-action@v3
4040
-
4141
name: Build and Test
42-
uses: docker/build-push-action@v4
42+
uses: docker/build-push-action@v6
4343
with:
4444
push: false
4545
context: .

.github/workflows/release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
steps:
1212
-
1313
name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
-
1616
name: Set up QEMU
17-
uses: docker/setup-qemu-action@v2
17+
uses: docker/setup-qemu-action@v3
1818
-
1919
name: Docker meta
2020
id: meta
21-
uses: docker/metadata-action@v3
21+
uses: docker/metadata-action@v5
2222
with:
2323
images: joseluisq/alpine-mysql-client
2424
tags: |
@@ -27,10 +27,10 @@ jobs:
2727
type=semver,pattern={{major}}
2828
-
2929
name: Set up Docker Buildx
30-
uses: docker/setup-buildx-action@v2
30+
uses: docker/setup-buildx-action@v3
3131
-
3232
name: Login to DockerHub
33-
uses: docker/login-action@v2
33+
uses: docker/login-action@v3
3434
with:
3535
username: ${{ secrets.DOCKERHUB_USERNAME }}
3636
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -41,7 +41,7 @@ jobs:
4141
echo "VERSION=${GITHUB_REF##*/v}" >> $GITHUB_ENV
4242
-
4343
name: Build and push
44-
uses: docker/build-push-action@v4
44+
uses: docker/build-push-action@v6
4545
with:
4646
push: true
4747
context: .

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
FROM --platform=$BUILDPLATFORM alpine:3.17.5 as build
1+
FROM --platform=$BUILDPLATFORM alpine:3.18.9 as build
22

33
ARG TARGETPLATFORM
44
ARG VERSION=0.0.0
55
ENV VERSION=${VERSION}
6-
ARG ENVE_VERSION=1.4.1
6+
ARG ENVE_VERSION=1.5.1
77

88
RUN apk --no-cache add ca-certificates tzdata
99
RUN set -ex; \
1010
case "$TARGETPLATFORM" in \
1111
"linux/amd64") target='amd64' ;; \
1212
"linux/arm64") target='arm64' ;; \
13-
"linux/386") target='i386' ;; \
13+
"linux/386") target='386' ;; \
1414
"linux/arm/v7") target='armv7' ;; \
1515
"linux/arm/v6") target='armv6' ;; \
1616
*) echo >&2 "error: unsupported $TARGETPLATFORM architecture"; exit 1 ;; \
@@ -22,7 +22,7 @@ RUN set -ex; \
2222
chmod +x /usr/local/bin/enve; \
2323
true
2424

25-
FROM alpine:3.17.5
25+
FROM alpine:3.18.9
2626

2727
ARG VERSION=0.0.0
2828
ENV VERSION=${VERSION}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ For more details check it out:
3636

3737
```sh
3838
docker run -it --rm joseluisq/alpine-mysql-client mysql --version
39-
# mysql Ver 15.1 Distrib 10.6.4-MariaDB, for Linux (x86_64) using readline 5.1
39+
# mysql Ver 15.1 Distrib 10.11.8-MariaDB, for Linux (x86_64) using readline 5.1
4040
```
4141

4242
## User privileges

0 commit comments

Comments
 (0)