Skip to content

Commit 33e7e44

Browse files
committed
Alpine 3.22 and workflow fix
feat: alpine 3.22 bug: fix version workflow
1 parent fb4f2c2 commit 33e7e44

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/image-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
id: prepare
2121
run: |
2222
VERSION=${GITHUB_REF#refs/tags/v}
23-
echo ::set-output name=version::${VERSION}
23+
echo "version=${VERSION}" >> $GITHUB_OUTPUT
2424
- name: login to docker hub
2525
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
2626
- name: build the image

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.21
1+
FROM alpine:3.22
22
LABEL org.opencontainers.image.authors="matt@horwood.biz"
33

44
# Install required deb packages

0 commit comments

Comments
 (0)