Compare commits

...

2 Commits

Author SHA1 Message Date
dependabot[bot]
c7b590a23e Bump golang from 1.25-alpine to 1.26-alpine in the minor-updates group
Bumps the minor-updates group with 1 update: golang.


Updates `golang` from 1.25-alpine to 1.26-alpine

---
updated-dependencies:
- dependency-name: golang
  dependency-version: 1.26-alpine
  dependency-type: direct:production
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-25 20:54:57 +00:00
Owen
9c0e37eddb Send token 2026-02-24 19:47:30 -08:00
2 changed files with 2 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
FROM golang:1.25-alpine AS builder FROM golang:1.26-alpine AS builder
# Set the working directory inside the container # Set the working directory inside the container
WORKDIR /app WORKDIR /app

View File

@@ -388,6 +388,7 @@ func (c *Client) getToken() (string, []ExitNode, error) {
tokenData := map[string]interface{}{ tokenData := map[string]interface{}{
"olmId": c.config.ID, "olmId": c.config.ID,
"secret": c.config.Secret, "secret": c.config.Secret,
"userToken": c.config.UserToken,
"orgId": c.config.OrgID, "orgId": c.config.OrgID,
} }
jsonData, err := json.Marshal(tokenData) jsonData, err := json.Marshal(tokenData)