Skip to content
This repository was archived by the owner on Apr 15, 2024. It is now read-only.

Commit a6864aa

Browse files
committed
Update GitHub Actions
1 parent 8eedda2 commit a6864aa

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/dependabot.yml

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

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
fetch-depth: 0
1818

1919
- name: Set up Go
20-
uses: actions/setup-go@v3
20+
uses: actions/setup-go@v4
2121
with:
22-
go-version: 1.18
22+
go-version: 1.21
2323

2424
- name: Test
2525
run: go test -v ./...
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Run goreleaser in release mode
3131
if: success() && startsWith(github.ref, 'refs/tags/v')
32-
uses: goreleaser/goreleaser-action@v3
32+
uses: goreleaser/goreleaser-action@v4
3333
with:
3434
version: latest
3535
args: release --rm-dist

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Set up Go
14-
uses: actions/setup-go@v3
14+
uses: actions/setup-go@v4
1515
with:
16-
go-version: 1.18
16+
go-version: 1.21
1717

1818
- uses: actions/checkout@v3
19-
20-
- name: golangci-lint
21-
uses: golangci/golangci-lint-action@v3
22-
with:
23-
version: v1.51

0 commit comments

Comments
 (0)