From 02d9f7c4fc8af40d9a24c265b1d38a2595365cc2 Mon Sep 17 00:00:00 2001
From: Markus Blaschke <mblaschke82@gmail.com>
Date: Sat, 14 Sep 2024 20:34:42 +0200
Subject: [PATCH] update github workflows

Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
---
 .github/dependabot.yml              | 10 ++++++++++
 .github/workflows/build-docker.yaml |  8 +++++---
 2 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 72aecdf..004256d 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -4,13 +4,23 @@ updates:
     directory: "/"
     schedule:
       interval: "weekly"
+    groups:
+      all-github-actions:
+        patterns: [ "*" ]
 
   - package-ecosystem: "docker"
     directory: "/"
     schedule:
       interval: "weekly"
+    groups:
+      all-docker-versions:
+        patterns: [ "*" ]
 
   - package-ecosystem: "gomod"
     directory: "/"
     schedule:
       interval: "weekly"
+    groups:
+      all-go-mod-patch-and-minor:
+        patterns: [ "*" ]
+        update-types: [ "patch", "minor" ]
diff --git a/.github/workflows/build-docker.yaml b/.github/workflows/build-docker.yaml
index 8ac7451..b862cd4 100644
--- a/.github/workflows/build-docker.yaml
+++ b/.github/workflows/build-docker.yaml
@@ -25,7 +25,7 @@ jobs:
           check-latest: true
 
       - name: Run Golangci lint
-        uses: golangci/golangci-lint-action@v4
+        uses: golangci/golangci-lint-action@v6
         with:
           version: latest
           args: --print-resources-usage
@@ -61,7 +61,9 @@ jobs:
         id: docker_meta
         uses: docker/metadata-action@v5
         with:
-          images: ${{ github.repository }},quay.io/${{ github.repository }}
+          images: |
+            ${{ github.repository }}
+            quay.io/${{ github.repository }}
           labels: |
             io.artifacthub.package.readme-url=https://raw.githubusercontent.com/${{ github.repository }}/${{ github.event.repository.default_branch }}/README.md
           flavor: |
@@ -90,7 +92,7 @@ jobs:
           password: ${{ secrets.QUAY_TOKEN }}
 
       - name: ${{ inputs.publish && 'Build and push' || 'Build' }}
-        uses: docker/build-push-action@v5
+        uses: docker/build-push-action@v6
         with:
           context: .
           file: ./${{ matrix.Dockerfile }}