Skip to content

Commit 82ef615

Browse files
committed
v1.6.0
- alpine 3.17.3 - update ci dependencies
1 parent 8cb5df1 commit 82ef615

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/devel.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,30 +16,30 @@ jobs:
1616
- linux/arm64
1717
- linux/arm/v7
1818
- linux/arm/v6
19-
runs-on: ubuntu-20.04
19+
runs-on: ubuntu-22.04
2020
steps:
2121
-
2222
name: Checkout
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
with:
2525
fetch-depth: 1
2626
-
2727
name: Cache Docker layers
28-
uses: actions/cache@v2
28+
uses: actions/cache@v3
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@v1
36+
uses: docker/setup-qemu-action@v2
3737
-
3838
name: Set up Docker Buildx
39-
uses: docker/setup-buildx-action@v1
39+
uses: docker/setup-buildx-action@v2
4040
-
4141
name: Build and Test
42-
uses: docker/build-push-action@v2
42+
uses: docker/build-push-action@v4
4343
with:
4444
push: false
4545
context: .

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ on:
77

88
jobs:
99
docker:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-22.04
1111
steps:
1212
-
1313
name: Checkout
1414
uses: actions/checkout@v3
1515
-
1616
name: Set up QEMU
17-
uses: docker/setup-qemu-action@v1
17+
uses: docker/setup-qemu-action@v2
1818
-
1919
name: Docker meta
2020
id: meta
@@ -27,10 +27,10 @@ jobs:
2727
type=semver,pattern={{major}}
2828
-
2929
name: Set up Docker Buildx
30-
uses: docker/setup-buildx-action@v1
30+
uses: docker/setup-buildx-action@v2
3131
-
3232
name: Login to DockerHub
33-
uses: docker/login-action@v1
33+
uses: docker/login-action@v2
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@v2
44+
uses: docker/build-push-action@v4
4545
with:
4646
push: true
4747
context: .

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=$BUILDPLATFORM alpine:3.16.5 as build
1+
FROM --platform=$BUILDPLATFORM alpine:3.17.3 as build
22

33
ARG TARGETPLATFORM
44
ARG VERSION=0.0.0
@@ -22,7 +22,7 @@ RUN set -ex; \
2222
chmod +x /usr/local/bin/enve; \
2323
true
2424

25-
FROM alpine:3.16.5
25+
FROM alpine:3.17.3
2626

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

0 commit comments

Comments
 (0)