Skip to content

Commit 51d1e08

Browse files
committed
Use Dependabot to update local composite actions
The 'directory: /' configuration only looks at workflows.
1 parent 5593bbe commit 51d1e08

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.github/actions/trivy/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ runs:
5454
5555
# Install Trivy as requested.
5656
- if: ${{ ! contains(fromJSON(steps.parsed.outputs.setup), 'none') }}
57-
uses: aquasecurity/[email protected].2
57+
uses: aquasecurity/[email protected].3
5858
with:
5959
cache: ${{ contains(fromJSON(steps.parsed.outputs.setup), 'cache') }}
6060
version: ${{ steps.parsed.outputs.version }}

.github/dependabot.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2-
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/customizing-dependency-updates
1+
# Copyright 2024 - 2025 Crunchy Data Solutions, Inc.
32
#
4-
# See: https://www.github.com/dependabot/dependabot-core/issues/4605
5-
---
3+
# SPDX-License-Identifier: Apache-2.0
4+
#
5+
# documentation: https://docs.github.com/code-security/dependabot/dependabot-version-updates
6+
# schema documentation: https://docs.github.com/code-security/dependabot/working-with-dependabot/dependabot-options-reference
67
# yaml-language-server: $schema=https://json.schemastore.org/dependabot-2.0.json
8+
---
79
version: 2
810
updates:
911
- package-ecosystem: github-actions
10-
directory: /
12+
directories:
13+
- '/'
14+
- '.github/actions/*'
1115
schedule:
1216
interval: weekly
1317
day: tuesday

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-go@v5
2020
with: { go-version: stable }
2121

22-
- uses: golangci/golangci-lint-action@v7
22+
- uses: golangci/golangci-lint-action@v8
2323
with:
2424
version: latest
2525
args: --timeout=5m

0 commit comments

Comments
 (0)