5 Commits f27976daa4 ... f62f9a21a6

Author SHA1 Message Date
  Fabian Peter Hammerle f62f9a21a6 upgrade alpine base image from v3.21.3 to v3.22.0 including upgrade of gettext-envsubst package 6 days ago
  dependabot[bot] 01e9f17a5d build(deps): bump docker/build-push-action from 6.17.0 to 6.18.0 (#130) 2 weeks ago
  dependabot[bot] 2838754eda build(deps): bump docker/build-push-action from 6.16.0 to 6.17.0 (#129) 1 month ago
  dependabot[bot] b9985ac248 build(deps): bump actions/upload-artifact from 4.6.1 to 4.6.2 (#127) 1 month ago
  dependabot[bot] d93c029104 build(deps): bump docker/build-push-action from 6.15.0 to 6.16.0 (#128) 1 month ago
2 changed files with 6 additions and 6 deletions
  1. 2 2
      .github/workflows/container-image.yml
  2. 4 4
      Dockerfile

+ 2 - 2
.github/workflows/container-image.yml

@@ -17,7 +17,7 @@ jobs:
     # > will be done directly by buildkit. [...]
     # > any file mutation in the steps that precede [...] will be ignored
     # https://github.com/marketplace/actions/build-and-push-docker-images
-    - uses: docker/build-push-action@v6.15.0
+    - uses: docker/build-push-action@v6.18.0
       with:
         platforms: |
           linux/amd64
@@ -34,5 +34,5 @@ jobs:
         # https://docs.docker.com/engine/reference/commandline/buildx_build/#output
         # https://github.com/opencontainers/image-spec
         outputs: type=oci,dest=oci-container-image.tar
-    - uses: actions/upload-artifact@v4.6.1
+    - uses: actions/upload-artifact@v4.6.2
       with: {path: oci-container-image.tar}

+ 4 - 4
Dockerfile

@@ -1,11 +1,11 @@
-FROM docker.io/alpine:3.21.3
+FROM docker.io/alpine:3.22.0
 
 # https://git.savannah.gnu.org/gitweb/?p=gettext.git;a=blob_plain;f=NEWS;hb=master
-# https://git.alpinelinux.org/aports/log/main/gettext?h=3.21-stable
-ARG GETTEXT_PACKAGE_VERSION=0.22.5-r0
+# https://git.alpinelinux.org/aports/log/main/gettext?h=3.22-stable
+ARG GETTEXT_PACKAGE_VERSION=0.24.1-r0
 # https://gitweb.torproject.org/tor.git/plain/ChangeLog
 # https://gitlab.torproject.org/tpo/core/tor/-/raw/release-0.4.8/ReleaseNotes
-# https://git.alpinelinux.org/aports/log/community/tor?h=3.21-stable
+# https://git.alpinelinux.org/aports/log/community/tor?h=3.22-stable
 ARG TOR_PACKAGE_VERSION=0.4.8.16-r0
 RUN apk add --no-cache \
         tor=$TOR_PACKAGE_VERSION \