Skip to content

Commit 6abb74d

Browse files
committed
update github workflows
Signed-off-by: Markus Blaschke <[email protected]>
1 parent 6b24c88 commit 6abb74d

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

Diff for: .github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,23 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7+
groups:
8+
all-github-actions:
9+
patterns: [ "*" ]
710

811
- package-ecosystem: "docker"
912
directory: "/"
1013
schedule:
1114
interval: "weekly"
15+
groups:
16+
all-docker-versions:
17+
patterns: [ "*" ]
1218

1319
- package-ecosystem: "gomod"
1420
directory: "/"
1521
schedule:
1622
interval: "weekly"
23+
groups:
24+
all-go-mod-patch-and-minor:
25+
patterns: [ "*" ]
26+
update-types: [ "patch", "minor" ]

Diff for: .github/workflows/build-docker.yaml

+5-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
check-latest: true
2626

2727
- name: Run Golangci lint
28-
uses: golangci/golangci-lint-action@v4
28+
uses: golangci/golangci-lint-action@v6
2929
with:
3030
version: latest
3131
args: --print-resources-usage
@@ -61,7 +61,9 @@ jobs:
6161
id: docker_meta
6262
uses: docker/metadata-action@v5
6363
with:
64-
images: ${{ github.repository }},quay.io/${{ github.repository }}
64+
images: |
65+
${{ github.repository }}
66+
quay.io/${{ github.repository }}
6567
labels: |
6668
io.artifacthub.package.readme-url=https://raw.githubusercontent.com/${{ github.repository }}/${{ github.event.repository.default_branch }}/README.md
6769
flavor: |
@@ -90,7 +92,7 @@ jobs:
9092
password: ${{ secrets.QUAY_TOKEN }}
9193

9294
- name: ${{ inputs.publish && 'Build and push' || 'Build' }}
93-
uses: docker/build-push-action@v5
95+
uses: docker/build-push-action@v6
9496
with:
9597
context: .
9698
file: ./${{ matrix.Dockerfile }}

0 commit comments

Comments
 (0)