Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump go version #25

Merged
merged 3 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/checkout@v4
- name: Setup Go v1.21.8
with:
go-version: '1.21.8'
uses: actions/setup-go@v5
- name: Copy Env Files
run: cp .env.example .env

Expand Down
1 change: 1 addition & 0 deletions go/src/CustomGoPlugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ func MakeOutboundCall(rw http.ResponseWriter, r *http.Request) {

func main() {}

// This will be run during Gateway startup
func init() {
logger.Info("--- Go custom plugin init success! ---- ")
}
Loading