Skip to content

Commit 72d364e

Browse files
committed
Add dependabot config for GH Actions
1 parent 72e870e commit 72d364e

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ updates:
66
interval: weekly
77
time: '10:00'
88
open-pull-requests-limit: 10
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
schedule:
12+
interval: monthly

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313

1414
steps:
1515
- name: Check out code into the Go module directory
16-
uses: actions/checkout@v1
16+
uses: actions/checkout@v3
1717
with:
1818
fetch-depth: 0
1919

2020
- name: Set up Go
21-
uses: actions/setup-go@v2
21+
uses: actions/setup-go@v4
2222
with:
2323
go-version: 1.18
2424

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Set up Go
14-
uses: actions/setup-go@v2
14+
uses: actions/setup-go@v4
1515

1616
- uses: actions/checkout@v2
1717

1818
- name: golangci-lint
19-
uses: golangci/golangci-lint-action@v2
19+
uses: golangci/golangci-lint-action@v3
2020
with:
2121
version: v1.51

0 commit comments

Comments
 (0)