Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/cli-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"
cache: true

- name: Install quill (for macOS code signing)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gen-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Install benchstat
run: go install golang.org/x/perf/cmd/benchstat@latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
name: lint
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"
- name: Compile Go SDK examples
run: |
# Find all directories with go.mod files
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sdk-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Start Docker dependencies
working-directory: .
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Start Docker dependencies
working-directory: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Start Docker dependencies
working-directory: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Install pnpm
if: matrix.package-manager == 'pnpm'
Expand Down
23 changes: 10 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Go deps
run: go mod download
Expand All @@ -89,7 +89,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
Expand Down Expand Up @@ -406,7 +406,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
Expand Down Expand Up @@ -450,7 +450,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
Expand Down Expand Up @@ -496,10 +496,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"

- name: Go deps
run: go mod download

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did we intend to drop the go mod download step here? I think this should still work without it because go run can download modules on demand. One thing to consider is that the explicit download was useful self-documentation and may also help slightly by cahcing the module early.

go-version: "1.26"

- name: Compose
run: docker compose up -d
Expand Down Expand Up @@ -592,7 +589,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
Expand Down Expand Up @@ -686,7 +683,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.25.9"
go-version: "1.26"

- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Then, before contributing, check out the following sections:

Ensure all prerequisite dependencies are installed:

- [Go 1.25+](https://go.dev/doc/install)
- [Go 1.26+](https://go.dev/doc/install)
- [Node.js v18+](https://nodejs.org/en/download)
- We recommend using [nvm](https://github.com/nvm-sh/nvm) for managing node versions to match the version defined in [`.nvmrc`](.nvmrc)
- [pnpm](https://pnpm.io/installation) installed globally (`npm i -g pnpm`)
Expand Down
2 changes: 1 addition & 1 deletion build/package/e2e-go.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Base Go environment
# -------------------
FROM golang:1.25-alpine as base
FROM golang:1.26-alpine as base
WORKDIR /hatchet

COPY go.mod go.sum ./
Expand Down
2 changes: 1 addition & 1 deletion build/package/frontend.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY ./frontend/app ./
RUN npm run build

# Stage 2: Build the static fileserver
FROM golang:1.25.9-alpine AS staticfileserver
FROM golang:1.26-alpine AS staticfileserver

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion build/package/loadtest.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Base Go environment
# -------------------
FROM golang:1.25.9-alpine as base
FROM golang:1.26-alpine as base
WORKDIR /hatchet

COPY go.mod go.sum ./
Expand Down
2 changes: 1 addition & 1 deletion build/package/servers.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Base Go environment
# -------------------
FROM golang:1.25.9-alpine as base
FROM golang:1.26-alpine as base
WORKDIR /hatchet

RUN apk update && apk add --no-cache gcc musl-dev git protoc protobuf-dev
Expand Down
2 changes: 1 addition & 1 deletion cmd/hatchet-cli/cli/templates/go/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.9-alpine AS builder
FROM golang:1.26-alpine AS builder

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions frontend/docs/pages/v1/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ CMD ["node", "dist/worker.js"]

```dockerfile
# Stage 1: Build
FROM golang:1.25-alpine3.21 AS builder
FROM golang:1.26-alpine3.21 AS builder

WORKDIR /app

Expand All @@ -202,7 +202,7 @@ RUN go build -o hatchet-worker .

# Stage 2: Production

FROM golang:1.25-alpine3.21
FROM golang:1.26-alpine3.21

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hatchet-dev/hatchet

go 1.25.9
go 1.26

require (
github.com/Masterminds/semver/v3 v3.4.0
Expand Down
2 changes: 1 addition & 1 deletion hack/dev/compression-test/Dockerfile.client-go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.9-alpine AS builder
FROM golang:1.26-alpine AS builder

WORKDIR /app

Expand Down
Loading