Skip to content

Commit 5f38837

Browse files
committed
Update github actions to use node 20
* Update github actions to latest * Configure dependabot to check for newer versions of actions
1 parent 059d5fc commit 5f38837

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Diff for: .github/dependabot.yml

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
version: 2
77
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
812
- package-ecosystem: "" # See documentation for possible values
913
directory: "/" # Location of package manifests
1014
schedule:

Diff for: .github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
name: lint
88
runs-on: ubuntu-22.04
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
13-
- uses: actions/setup-go@v3
13+
- uses: actions/setup-go@v5
1414
with:
1515
go-version-file: "go.mod"
1616
- run: make lint

Diff for: .github/workflows/test-unit.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
name: unit
88
runs-on: ubuntu-22.04
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
13-
- uses: actions/setup-go@v3
13+
- uses: actions/setup-go@v5
1414
with:
1515
go-version-file: "go.mod"
1616
- run: make test

0 commit comments

Comments
 (0)