From 45c2f1aaf52eef7de3a131e6749d450a8ce3881d Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Fri, 21 Mar 2025 14:20:22 +0300 Subject: [PATCH] ci & examples fixes --- .github/workflows/ci.yml | 15 +++++++-------- examples/basic/main.go | 3 ++- examples/extension/main.go | 3 ++- examples/linked-account/main.go | 8 +++++--- 4 files changed, 16 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 984137d..01bf744 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,12 +18,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - name: Set up Go 1.17 - uses: actions/setup-go@v2 + uses: actions/checkout@v4 + - name: Set up Go 1.24 + uses: actions/setup-go@v5 with: - # TODO: Should migrate to 1.18 later - go-version: '1.17' + go-version: '1.24' - name: Get dependencies run: go mod tidy - name: Lint code with golangci-lint @@ -36,14 +35,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: ['1.13', '1.14', '1.15', '1.16', '1.17'] + go-version: ['1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20', '1.21', '1.22', '1.23', '1.24'] steps: - name: Set up Go ${{ matrix.go-version }} - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Get dependencies run: go mod tidy - name: Tests diff --git a/examples/basic/main.go b/examples/basic/main.go index 1b12ad9..a33cbeb 100644 --- a/examples/basic/main.go +++ b/examples/basic/main.go @@ -48,7 +48,8 @@ func main() { fmt.Println("Something went wrong!", err) } - r.Text(fmt.Sprintf("Hello, %v!", p.FirstName), messenger.ResponseType, "") + r.Text(fmt.Sprintf("Hello, %v!", p.FirstName), + messenger.ResponseType, "", messenger.NotificationRegularType) }) // Setup a handler to be triggered when a message is delivered diff --git a/examples/extension/main.go b/examples/extension/main.go index 853c0a7..c4034b3 100644 --- a/examples/extension/main.go +++ b/examples/extension/main.go @@ -57,7 +57,8 @@ func main() { fmt.Println("Something went wrong!", err) } - r.Text(fmt.Sprintf("Hello, %v!", p.FirstName), messenger.ResponseType, "") + r.Text(fmt.Sprintf("Hello, %v!", p.FirstName), messenger.ResponseType, + "", messenger.NotificationRegularType) }) addr := fmt.Sprintf("%s:%d", *host, *port) diff --git a/examples/linked-account/main.go b/examples/linked-account/main.go index 67bdc92..557975d 100644 --- a/examples/linked-account/main.go +++ b/examples/linked-account/main.go @@ -84,7 +84,8 @@ func main() { text = "You've been logged out of your account." } - if _, err := r.Text(text, messenger.ResponseType, ""); err != nil { + if _, err := r.Text(text, messenger.ResponseType, + "", messenger.NotificationRegularType); err != nil { log.Println("Failed to send account linking feedback") } }) @@ -134,7 +135,8 @@ func logoutButton(r *messenger.Response) error { // greeting salutes the user. func greeting(p messenger.Profile, r *messenger.Response) error { - _, err := r.Text(fmt.Sprintf("Hello, %v!", p.FirstName), messenger.ResponseType, "") + _, err := r.Text(fmt.Sprintf("Hello, %v!", p.FirstName), messenger.ResponseType, + "", messenger.NotificationRegularType) return err } @@ -156,7 +158,7 @@ func help(p messenger.Profile, r *messenger.Response) error { }, } - _, err := r.TextWithReplies(text, replies, messenger.ResponseType, "") + _, err := r.TextWithReplies(text, replies, messenger.ResponseType, "", messenger.NotificationRegularType) return err }