Skip to content

Commit ebcb805

Browse files
committed
chore!: updated go workflow to v5
1 parent 5b6d824 commit ebcb805

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

.github/workflows/go.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# This workflow will build a golang project
23
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
34

@@ -14,15 +15,15 @@ jobs:
1415
build:
1516
runs-on: ubuntu-latest
1617
steps:
17-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1819

19-
- name: Set up Go
20-
uses: actions/setup-go@v3
21-
with:
22-
go-version: 1.22
20+
- name: Set up Go
21+
uses: actions/setup-go@v5
22+
with:
23+
go-version: '1.25'
2324

24-
- name: Build
25-
run: go build -v ./...
25+
- name: Build
26+
run: go build -v ./...
2627

27-
- name: Test
28-
run: go test -v ./...
28+
- name: Test
29+
run: go test -v ./...

0 commit comments

Comments
 (0)