Skip to content

Commit

Permalink
update license
Browse files Browse the repository at this point in the history
  • Loading branch information
cvilsmeier committed Dec 29, 2024
1 parent 6a47650 commit c5088ac
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:

strategy:
matrix:
go-version: ['1.20', '1.21']
go-version: ['1.21', '1.22', '1.23']

steps:
- uses: actions/checkout@v4

- name: setup go ${{matrix.go-version}}
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{matrix.go-version}}

Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
dev/
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Christoph Vilsmeier - https://monibot.io
Copyright (c) 2023-2024 Christoph Vilsmeier - https://monibot.io

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion internal/sending/sender.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package sending

import (
"context"
"errors"
"fmt"
"time"
)
Expand Down Expand Up @@ -49,7 +50,7 @@ func (s *Sender) Send(ctx context.Context, method, path string, body []byte) ([]
if len(data) > 0 {
msg += ": " + string(data)
}
err = fmt.Errorf(msg)
err = errors.New(msg)
}
return data, err
}
Expand Down

0 comments on commit c5088ac

Please sign in to comment.