Skip to content

Commit 7a772b3

Browse files
committed
chore: bump go version everywhere
1 parent 1c62d6f commit 7a772b3

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup go
1919
uses: actions/setup-go@v5
2020
with:
21-
go-version: "^1.24.0"
21+
go-version: "^1.26.0"
2222

2323
- name: Initialize submodules
2424
run: |

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Install go
6262
uses: actions/setup-go@v5
6363
with:
64-
go-version: "^1.24.0"
64+
go-version: "^1.26.0"
6565

6666
- name: Initialize submodules
6767
run: |
@@ -116,7 +116,7 @@ jobs:
116116
- name: Install go
117117
uses: actions/setup-go@v5
118118
with:
119-
go-version: "^1.24.0"
119+
go-version: "^1.26.0"
120120

121121
- name: Initialize submodules
122122
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Install go
4040
uses: actions/setup-go@v5
4141
with:
42-
go-version: "^1.24.0"
42+
go-version: "^1.26.0"
4343

4444
- name: Initialize submodules
4545
run: |
@@ -91,7 +91,7 @@ jobs:
9191
- name: Install go
9292
uses: actions/setup-go@v5
9393
with:
94-
go-version: "^1.24.0"
94+
go-version: "^1.26.0"
9595

9696
- name: Initialize submodules
9797
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ COPY ./frontend/vite.config.ts ./
2020
RUN bun run build
2121

2222
# Builder
23-
FROM golang:1.25-alpine3.21 AS builder
23+
FROM golang:1.26-alpine3.21 AS builder
2424

2525
ARG VERSION
2626
ARG COMMIT_HASH

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25-alpine3.21
1+
FROM golang:1.26-alpine3.21
22

33
WORKDIR /tinyauth
44

Dockerfile.distroless

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ COPY ./frontend/vite.config.ts ./
2020
RUN bun run build
2121

2222
# Builder
23-
FROM golang:1.25-alpine3.21 AS builder
23+
FROM golang:1.26-alpine3.21 AS builder
2424

2525
ARG VERSION
2626
ARG COMMIT_HASH

0 commit comments

Comments
 (0)