4 Commits 3b839634d2 ... e10880e797

Autore SHA1 Messaggio Data
  dependabot[bot] e10880e797 Bump docker/setup-qemu-action from 3.1.0 to 3.2.0 (#77) 3 mesi fa
  dependabot[bot] ed3aa47538 Bump alpine from 3.20.1 to 3.20.2 (#76) 3 mesi fa
  dependabot[bot] bb40f0a32d Bump docker/setup-buildx-action from 3.4.0 to 3.5.0 (#78) 3 mesi fa
  dependabot[bot] 7b84d4b05e Bump docker/build-push-action from 6.4.1 to 6.5.0 (#79) 3 mesi fa
2 ha cambiato i file con 5 aggiunte e 5 eliminazioni
  1. 3 3
      .github/workflows/container-image.yml
  2. 2 2
      Dockerfile

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

@@ -12,14 +12,14 @@ jobs:
   docker-build:
     runs-on: ubuntu-20.04
     steps:
-    - uses: docker/setup-qemu-action@v3.1.0
-    - uses: docker/setup-buildx-action@v3.4.0
+    - uses: docker/setup-qemu-action@v3.2.0
+    - uses: docker/setup-buildx-action@v3.5.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.4.1
+    - uses: docker/build-push-action@v6.5.0
       with:
         platforms: |
           linux/amd64

+ 2 - 2
Dockerfile

@@ -1,4 +1,4 @@
-FROM alpine:3.20.1 as build
+FROM alpine:3.20.2 as build
 
 RUN apk add --no-cache \
     cmake \
@@ -18,7 +18,7 @@ RUN mkdir build \
     && make
 
 
-FROM alpine:3.20.1 as service
+FROM alpine:3.20.2 as service
 
 RUN adduser -S milterfrom \
     && apk add libmilter