Skip to content

Commit 4acae54

Browse files
authored
support go1.18 and remove go1.16 (fatedier#2868)
1 parent 11b1353 commit 4acae54

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ version: 2
22
jobs:
33
go-version-latest:
44
docker:
5-
- image: cimg/go:1.17-node
5+
- image: cimg/go:1.18-node
66
steps:
77
- checkout
88
- run: make
99
- run: make alltest
1010
go-version-last:
1111
docker:
12-
- image: cimg/go:1.16-node
12+
- image: cimg/go:1.17-node
1313
steps:
1414
- checkout
1515
- run: make

.github/workflows/build-and-push-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go 1.x
1818
uses: actions/setup-go@v2
1919
with:
20-
go-version: 1.17
20+
go-version: 1.18
2121

2222
- run: |
2323
# https://github.com/actions/setup-go/issues/107

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v2
1717
with:
18-
go-version: 1.17
18+
go-version: 1.18
1919

2020
- run: |
2121
# https://github.com/actions/setup-go/issues/107

.goreleaser.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
builds:
22
- skip: true
33
checksum:
4-
name_template: 'checksums.txt'
4+
name_template: '{{ .ProjectName }}_{{ .Version }}_sha256_checksums.txt'
5+
algorithm: sha256
6+
extra_files:
7+
- glob: ./release/packages/*
58
release:
69
# Same as for github
710
# Note: it can only be one: either github, gitlab or gitea

0 commit comments

Comments
 (0)