Skip to content

Commit

Permalink
v1.7.0
Browse files Browse the repository at this point in the history
- alpine 3.18.9
- mariadb-client 10.11.8
- enve 1.5.1
- several ci dependency updates
  • Loading branch information
joseluisq committed Sep 24, 2024
1 parent 14870e3 commit 3231159
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,26 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
-
name: Cache Docker layers
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: alpine-mysql-client-${{ matrix.arch }}-buildx-${{ github.sha }}
restore-keys: |
alpine-mysql-client-${{ matrix.arch }}-buildx-
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Build and Test
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: false
context: .
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
-
name: Docker meta
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: joseluisq/alpine-mysql-client
tags: |
Expand All @@ -27,10 +27,10 @@ jobs:
type=semver,pattern={{major}}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -41,7 +41,7 @@ jobs:
echo "VERSION=${GITHUB_REF##*/v}" >> $GITHUB_ENV
-
name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: true
context: .
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM --platform=$BUILDPLATFORM alpine:3.17.5 as build
FROM --platform=$BUILDPLATFORM alpine:3.18.9 as build

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / Docker test (linux/amd64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / Docker test (linux/386)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / Docker test (linux/arm64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / Docker test (linux/arm/v7)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / Docker test (linux/arm/v6)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

ARG TARGETPLATFORM
ARG VERSION=0.0.0
ENV VERSION=${VERSION}
ARG ENVE_VERSION=1.4.1
ARG ENVE_VERSION=1.5.1

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

FROM alpine:3.17.5
FROM alpine:3.18.9

ARG VERSION=0.0.0
ENV VERSION=${VERSION}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ For more details check it out:

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

## User privileges
Expand Down

0 comments on commit 3231159

Please sign in to comment.