Skip to content

Commit 09d7376

Browse files
authored
Merge pull request #30 from chrisd8088/actions-update-steps-checks
Upgrade CI workflow to latest Go and Actions versions and add monthly checks
2 parents 30ed74d + 2b70a3e commit 09d7376

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "monthly"

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
name: Default build
77
strategy:
88
matrix:
9-
go: ['1.12.x', '1.13.x', '1.14.x']
9+
go: ['1.18.x', '1.19.x']
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v1
13-
- uses: actions/setup-go@v1
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-go@v3
1414
with:
1515
go-version: ${{ matrix.go }}
1616
- run: script/cibuild

0 commit comments

Comments
 (0)