Skip to content

Commit dd988ad

Browse files
committed
update github workflows
Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
1 parent 3971309 commit dd988ad

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
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" ]

.github/workflows/build-docker.yaml

Lines changed: 2 additions & 2 deletions
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@v5
28+
uses: golangci/golangci-lint-action@v6
2929
with:
3030
version: latest
3131
args: --print-resources-usage
@@ -92,7 +92,7 @@ jobs:
9292
password: ${{ secrets.QUAY_TOKEN }}
9393

9494
- name: ${{ inputs.publish && 'Build and push' || 'Build' }}
95-
uses: docker/build-push-action@v5
95+
uses: docker/build-push-action@v6
9696
with:
9797
context: .
9898
file: ./${{ matrix.Dockerfile }}

0 commit comments

Comments
 (0)