Commit 3231159 1 parent 14870e3 commit 3231159 Copy full SHA for 3231159
File tree 4 files changed +16
-16
lines changed
4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -20,26 +20,26 @@ jobs:
20
20
steps :
21
21
-
22
22
name : Checkout
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
with :
25
25
fetch-depth : 1
26
26
-
27
27
name : Cache Docker layers
28
- uses : actions/cache@v3
28
+ uses : actions/cache@v4
29
29
with :
30
30
path : /tmp/.buildx-cache
31
31
key : alpine-mysql-client-${{ matrix.arch }}-buildx-${{ github.sha }}
32
32
restore-keys : |
33
33
alpine-mysql-client-${{ matrix.arch }}-buildx-
34
34
-
35
35
name : Set up QEMU
36
- uses : docker/setup-qemu-action@v2
36
+ uses : docker/setup-qemu-action@v3
37
37
-
38
38
name : Set up Docker Buildx
39
- uses : docker/setup-buildx-action@v2
39
+ uses : docker/setup-buildx-action@v3
40
40
-
41
41
name : Build and Test
42
- uses : docker/build-push-action@v4
42
+ uses : docker/build-push-action@v6
43
43
with :
44
44
push : false
45
45
context : .
Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ jobs:
11
11
steps :
12
12
-
13
13
name : Checkout
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
-
16
16
name : Set up QEMU
17
- uses : docker/setup-qemu-action@v2
17
+ uses : docker/setup-qemu-action@v3
18
18
-
19
19
name : Docker meta
20
20
id : meta
21
- uses : docker/metadata-action@v3
21
+ uses : docker/metadata-action@v5
22
22
with :
23
23
images : joseluisq/alpine-mysql-client
24
24
tags : |
@@ -27,10 +27,10 @@ jobs:
27
27
type=semver,pattern={{major}}
28
28
-
29
29
name : Set up Docker Buildx
30
- uses : docker/setup-buildx-action@v2
30
+ uses : docker/setup-buildx-action@v3
31
31
-
32
32
name : Login to DockerHub
33
- uses : docker/login-action@v2
33
+ uses : docker/login-action@v3
34
34
with :
35
35
username : ${{ secrets.DOCKERHUB_USERNAME }}
36
36
password : ${{ secrets.DOCKERHUB_TOKEN }}
41
41
echo "VERSION=${GITHUB_REF##*/v}" >> $GITHUB_ENV
42
42
-
43
43
name : Build and push
44
- uses : docker/build-push-action@v4
44
+ uses : docker/build-push-action@v6
45
45
with :
46
46
push : true
47
47
context : .
Original file line number Diff line number Diff line change 1
- FROM --platform=$BUILDPLATFORM alpine:3.17.5 as build
1
+ FROM --platform=$BUILDPLATFORM alpine:3.18.9 as build
2
2
3
3
ARG TARGETPLATFORM
4
4
ARG VERSION=0.0.0
5
5
ENV VERSION=${VERSION}
6
- ARG ENVE_VERSION=1.4 .1
6
+ ARG ENVE_VERSION=1.5 .1
7
7
8
8
RUN apk --no-cache add ca-certificates tzdata
9
9
RUN set -ex; \
10
10
case "$TARGETPLATFORM" in \
11
11
"linux/amd64" ) target='amd64' ;; \
12
12
"linux/arm64" ) target='arm64' ;; \
13
- "linux/386" ) target='i386 ' ;; \
13
+ "linux/386" ) target='386 ' ;; \
14
14
"linux/arm/v7" ) target='armv7' ;; \
15
15
"linux/arm/v6" ) target='armv6' ;; \
16
16
*) echo >&2 "error: unsupported $TARGETPLATFORM architecture" ; exit 1 ;; \
@@ -22,7 +22,7 @@ RUN set -ex; \
22
22
chmod +x /usr/local/bin/enve; \
23
23
true
24
24
25
- FROM alpine:3.17.5
25
+ FROM alpine:3.18.9
26
26
27
27
ARG VERSION=0.0.0
28
28
ENV VERSION=${VERSION}
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ For more details check it out:
36
36
37
37
``` sh
38
38
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
40
40
```
41
41
42
42
## User privileges
You can’t perform that action at this time.
0 commit comments