Skip to content
This repository was archived by the owner on Dec 26, 2024. It is now read-only.

Commit f84f5d9

Browse files
authored
chore(build): bump Go to latest patch release (#93)
* chore(deps): bump Go to latest patch release * fix: bump go in dockerfile-distroless.ci
1 parent b120fb8 commit f84f5d9

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.github/workflows/build.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
env:
1313
REGISTRY: ghcr.io
1414
REGISTRY_IMAGE: ghcr.io/${{ github.repository }}
15+
GO_VERSION: '1.23'
1516

1617
permissions:
1718
contents: write
@@ -30,7 +31,7 @@ jobs:
3031
- name: Set up Go
3132
uses: actions/setup-go@v5
3233
with:
33-
go-version: '1.22.0'
34+
go-version: ${{ env.GO_VERSION }}
3435
cache: true
3536

3637
- name: Test
@@ -55,7 +56,7 @@ jobs:
5556
- name: Set up Go
5657
uses: actions/setup-go@v5
5758
with:
58-
go-version: '1.22.0'
59+
go-version: ${{ env.GO_VERSION }}
5960
cache: true
6061

6162
- name: Run GoReleaser build

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build app
2-
FROM golang:1.21-alpine3.19 AS app-builder
2+
FROM golang:1.23-alpine3.20 AS app-builder
33

44
ARG VERSION=dev
55
ARG REVISION=dev

Dockerfile-distroless.ci

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build app
2-
FROM --platform=$BUILDPLATFORM golang:1.22-alpine3.19 AS app-builder
2+
FROM --platform=$BUILDPLATFORM golang:1.23-alpine3.20 AS app-builder
33
#RUN apk add --no-cache git tzdata
44

55
ENV SERVICE=omegabrr

Dockerfile.ci

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build app
2-
FROM --platform=$BUILDPLATFORM golang:1.22-alpine3.19 AS app-builder
2+
FROM --platform=$BUILDPLATFORM golang:1.23-alpine3.20 AS app-builder
33
RUN apk add --no-cache git tzdata
44

55
ENV SERVICE=omegabrr

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/autobrr/omegabrr
22

3-
go 1.21
3+
go 1.23.2
44

55
require (
66
github.com/blang/semver v3.5.1+incompatible

0 commit comments

Comments
 (0)