Skip to content

Commit 6561eba

Browse files
authored
Moved to minimal Go Version 1.17
Moved to minimal Go Version 1.17 to adapt with latest build tools
1 parent e76b544 commit 6561eba

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Install Go
1212
uses: actions/setup-go@v4
1313
with:
14-
go-version: 1.20.1
14+
go-version: 1.21.1
1515

1616
- name: Checkout code
1717
uses: actions/checkout@v4
@@ -44,7 +44,7 @@ jobs:
4444
name: Test
4545
strategy:
4646
matrix:
47-
go-version: [ 1.13.0, 1.14.0, 1.15.0 ]
47+
go-version: [ 1.17.0, 1.20.0, 1.21.0 ]
4848
os: [ ubuntu-latest, macos-latest, windows-latest ]
4949
runs-on: ${{ matrix.os }}
5050
steps:
@@ -65,9 +65,7 @@ jobs:
6565
${{ runner.os }}-go-
6666
6767
- name: Install goveralls
68-
env:
69-
GO111MODULE: off
70-
run: go get github.com/mattn/goveralls
68+
run: go install github.com/mattn/goveralls@latest
7169

7270
- name: Test
7371
run: |
@@ -109,7 +107,7 @@ jobs:
109107
- name: Install Go
110108
uses: actions/setup-go@v4
111109
with:
112-
go-version: 1.20.1
110+
go-version: 1.21.1
113111

114112
- name: Cache
115113
uses: actions/cache@v3

go.mod

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

3-
go 1.13
3+
go 1.17

native/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/echocat/slf4g/native
22

3-
go 1.13
3+
go 1.17
44

55
replace github.com/echocat/slf4g => ../
66

0 commit comments

Comments
 (0)