4 Commits da284b38a4 ... a2aab9daf7

Author SHA1 Message Date
  Fabian Peter Hammerle a2aab9daf7 upgrade netcat package to v1.228.1-r0 and dma package to v0.14-r0 2 weeks ago
  dependabot[bot] f59f410702 build(deps): bump docker/setup-buildx-action from 3.7.1 to 3.8.0 (#83) 1 month ago
  dependabot[bot] 028e6603ec build(deps): bump alpine from 20240807 to 20240923 (#82) 2 months ago
  dependabot[bot] 64067be96f build(deps): bump docker/build-push-action from 6.9.0 to 6.10.0 (#81) 2 months ago
2 changed files with 5 additions and 5 deletions
  1. 2 2
      .github/workflows/container-image.yml
  2. 3 3
      Dockerfile

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

@@ -13,13 +13,13 @@ jobs:
     runs-on: ubuntu-20.04
     steps:
     - uses: docker/setup-qemu-action@v3.2.0
-    - uses: docker/setup-buildx-action@v3.7.1
+    - uses: docker/setup-buildx-action@v3.8.0
     # > By default, this action uses the Git context so you don't need to use
     # > the actions/checkout action to checkout the repository because this
     # > 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.9.0
+    - uses: docker/build-push-action@v6.10.0
       with:
         # dma package is only avilable for ppc64le, x86_64 & x86
         # https://pkgs.alpinelinux.org/packages?name=dma&branch=edge

+ 3 - 3
Dockerfile

@@ -8,16 +8,16 @@
 # >     required by: dma-0.13-r3[so:libcrypto.so.3]
 # >   so:libssl.so.3 (no such package):
 # >     required by: dma-0.13-r3[so:libssl.so.3]
-FROM docker.io/alpine:20240807
+FROM docker.io/alpine:20240923
 
 # https://git.alpinelinux.org/aports/log/community/dumb-init
 ARG DUMB_INIT_PACKAGE_VERSION=1.2.5-r3
 # https://github.com/openbsd/src/commits/master/usr.bin/nc
 # https://salsa.debian.org/debian/netcat-openbsd/-/commits/debian/latest
 # https://git.alpinelinux.org/aports/log/main/netcat-openbsd
-ARG NETCAT_PACKAGE_VERSION=1.226.1.1-r0
+ARG NETCAT_PACKAGE_VERSION=1.228.1-r0
 # https://git.alpinelinux.org/aports/log/community/dma
-ARG DMA_PACKAGE_VERSION=0.13-r4
+ARG DMA_PACKAGE_VERSION=0.14-r0
 RUN apk add --no-cache \
         dma=${DMA_PACKAGE_VERSION} \
         dumb-init=${DUMB_INIT_PACKAGE_VERSION} \