Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
- alpine 3.17.3
- update ci dependencies
  • Loading branch information
joseluisq committed May 15, 2023
1 parent 8cb5df1 commit 82ef615
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,30 @@ jobs:
- linux/arm64
- linux/arm/v7
- linux/arm/v6
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1
-
name: Cache Docker layers
uses: actions/cache@v2
uses: actions/cache@v3
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@v1
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
-
name: Build and Test
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
push: false
context: .
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ on:

jobs:
docker:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2
-
name: Docker meta
id: meta
Expand All @@ -27,10 +27,10 @@ jobs:
type=semver,pattern={{major}}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
-
name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v2
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@v2
uses: docker/build-push-action@v4
with:
push: true
context: .
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM alpine:3.16.5 as build
FROM --platform=$BUILDPLATFORM alpine:3.17.3 as build

ARG TARGETPLATFORM
ARG VERSION=0.0.0
Expand All @@ -22,7 +22,7 @@ RUN set -ex; \
chmod +x /usr/local/bin/enve; \
true

FROM alpine:3.16.5
FROM alpine:3.17.3

ARG VERSION=0.0.0
ENV VERSION=${VERSION}
Expand Down

0 comments on commit 82ef615

Please sign in to comment.