3 Komitmen ca38b2f96b ... 94509ab522

Pembuat SHA1 Pesan Tanggal
  dependabot[bot] 94509ab522 build(deps): bump docker/login-action from 3 to 4 (#258) 5 hari lalu
  dependabot[bot] 9fcddd4d08 build(deps): bump docker/setup-buildx-action from 3.12.0 to 4.0.0 (#257) 5 hari lalu
  dependabot[bot] c54d1e9594 build(deps): bump docker/metadata-action from 5 to 6 (#256) 5 hari lalu
1 mengubah file dengan 3 tambahan dan 3 penghapusan
  1. 3 3
      .github/workflows/container-image.yml

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

@@ -15,7 +15,7 @@ jobs:
     - id: meta
       # > "automatic" tag management and OCI Image Format Spec… for labels
       # https://web.archive.org/web/20250103123053/https://docs.docker.com/build/ci/github-actions/manage-tags-labels/
-      uses: docker/metadata-action@v5
+      uses: docker/metadata-action@v6
       with:
         # see comment on `push: true` below
         images: ghcr.io/${{ github.repository_owner }}/systemctl-mqtt
@@ -27,7 +27,7 @@ jobs:
           type=sha,format=long
           type=raw,value=latest,enable=false
     - uses: docker/setup-qemu-action@v4.0.0
-    - uses: docker/login-action@v3
+    - uses: docker/login-action@v4
       with:
         registry: ghcr.io
         username: ${{ github.actor }}
@@ -35,7 +35,7 @@ jobs:
     # > setup-buildx action … is not required but recommended using it to be
     # > able to build multi-platform images, export cache, etc.
     # https://web.archive.org/web/20250103122420/https://github.com/marketplace/actions/build-and-push-docker-images
-    - uses: docker/setup-buildx-action@v3.12.0
+    - uses: docker/setup-buildx-action@v4.0.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. [...]