Skip to content

Commit b92f691

Browse files
Build with Go 1.20
1 parent edee728 commit b92f691

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ on: push
44

55
jobs:
66
build:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v3
1010
with:
1111
fetch-depth: 0
1212

13-
- uses: actions/setup-go@v3
13+
- uses: actions/setup-go@v4
1414
with:
15-
go-version: 1.17
15+
go-version: 1.20
1616

1717
- run: go mod tidy
1818
- run: go build

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ permissions:
1010

1111
jobs:
1212
release:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v3
1616
with:
1717
fetch-depth: 0
1818

19-
- uses: actions/setup-go@v3
19+
- uses: actions/setup-go@v4
2020
with:
21-
go-version: 1.17
21+
go-version: 1.20
2222

2323
- uses: goreleaser/goreleaser-action@v4
2424
with:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/jacobwgillespie/git-sync
22

3-
go 1.17
3+
go 1.20

0 commit comments

Comments
 (0)