Skip to content

Commit 5f639aa

Browse files
Merge pull request #8 from jacobwgillespie/go-1-20
2 parents edee728 + 35b3c93 commit 5f639aa

File tree

4 files changed

+7
-14
lines changed

4 files changed

+7
-14
lines changed

.github/workflows/ci.yml

+3-3
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

+3-3
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:

.goreleaser.yml

-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@ builds:
88
- linux
99
- windows
1010
- darwin
11-
archives:
12-
- replacements:
13-
darwin: Darwin
14-
linux: Linux
15-
windows: Windows
16-
386: i386
17-
amd64: x86_64
1811
checksum:
1912
name_template: "checksums.txt"
2013
snapshot:

go.mod

+1-1
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)