Skip to content

Commit 552a37f

Browse files
committed
Update Github actions, reference to gotk3extra and update Go version
1 parent 6ec7db4 commit 552a37f

5 files changed

Lines changed: 22 additions & 54 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on: [push, pull_request]
44

55
jobs:
66
test-linux:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-24.04
88

99
strategy:
1010
fail-fast: false
1111
matrix:
12-
go: [ '1.19', '1.18', '1.17', '1.16', '1.15' ]
12+
go: [ '1.25', '1.24', '1.23' ]
1313

1414
name: Test go-${{ matrix.go }} (Linux)
1515
steps:
@@ -22,27 +22,3 @@ jobs:
2222
go-version: ${{ matrix.go }}
2323
- name: build
2424
run: make
25-
26-
notify-test:
27-
name: Notify on success or failure of test
28-
needs: test-linux
29-
runs-on: ubuntu-20.04
30-
if: always()
31-
steps:
32-
- name: checkout
33-
uses: actions/checkout@v2
34-
- uses: technote-space/workflow-conclusion-action@v1
35-
- uses: coyim/coyim/.github/actions/ci-conclusion-message@main
36-
id: message-generator
37-
with:
38-
status: ${{ env.WORKFLOW_CONCLUSION }}
39-
commit_id: ${{ github.sha }}
40-
commit_message: ${{ github.event.head_commit.message }}
41-
- name: send message to Matrix on conclusion
42-
uses: olabiniV2/matrix-message@v0.0.1
43-
with:
44-
room_id: ${{ secrets.MATRIX_COYIM_ROOM_ID }}
45-
access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }}
46-
server: ${{ secrets.MATRIX_SERVER }}
47-
subject: ${{ steps.message-generator.outputs.subject }}
48-
message: ${{ steps.message-generator.outputs.message }}

.github/workflows/updates.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.go-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.23.12

go.mod

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
module github.com/coyim/gotk3adapter
22

3-
go 1.15
3+
go 1.23.0
4+
5+
toolchain go1.23.12
6+
7+
require github.com/coyim/gotk3extra v0.0.2
8+
9+
require github.com/gotk3/gotk3 v0.6.2
410

511
require (
6-
github.com/coyim/gotk3extra v0.0.2
7-
github.com/gotk3/gotk3 v0.6.2
12+
github.com/awnumar/memcall v0.5.0 // indirect
13+
github.com/coyim/constbn v0.0.0-20251201142907-b19b950d1e1c // indirect
14+
github.com/coyim/otr3 v0.0.0-20251201151835-9faf51166271 // indirect
15+
golang.org/x/sys v0.35.0 // indirect
816
)

go.sum

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1+
github.com/awnumar/memcall v0.5.0 h1:31zYqzH08fM1UBzr53ywXFvqVP4grhAIFFd1Pfd7Gtk=
2+
github.com/awnumar/memcall v0.5.0/go.mod h1:5q5zKsL4XfYgqzCQEvUt9Dou4fEXWsn+tNrm1z1oYgQ=
3+
github.com/coyim/constbn v0.0.0-20251201142907-b19b950d1e1c h1:BiTh0vhGQV4TVf/+4DkRMTtffspaexqhqSDaOHdffrc=
4+
github.com/coyim/constbn v0.0.0-20251201142907-b19b950d1e1c/go.mod h1:DUKCup960vjCJVFhoDMGvsnmEmpMs9fGP6jSCcP7eIU=
15
github.com/coyim/gotk3extra v0.0.2 h1:LmgwTxEICcdpmm5m15Zg+hyhKu65hnSDJwO0XK63iww=
26
github.com/coyim/gotk3extra v0.0.2/go.mod h1:FKShTL6WkYgaA3M+dFjmEYsNskwYYQDTyIRCGuRAbaA=
7+
github.com/coyim/otr3 v0.0.0-20251201151835-9faf51166271 h1:WUo45d2bKOmfVoUcxqXU3j24tA2NT4GwdNdTe/F77uQ=
8+
github.com/coyim/otr3 v0.0.0-20251201151835-9faf51166271/go.mod h1:cEC1vJFaN8Vc4J8SCrDworb7cL6XLSSNcm6mP51kTQQ=
39
github.com/gotk3/gotk3 v0.6.2 h1:sx/PjaKfKULJPTPq8p2kn2ZbcNFxpOJqi4VLzMbEOO8=
410
github.com/gotk3/gotk3 v0.6.2/go.mod h1:/hqFpkNa9T3JgNAE2fLvCdov7c5bw//FHNZrZ3Uv9/Q=
11+
golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI=
12+
golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=

0 commit comments

Comments
 (0)