This repository was archived by the owner on Dec 26, 2024. It is now read-only.
File tree 5 files changed +7
-6
lines changed
5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 12
12
env :
13
13
REGISTRY : ghcr.io
14
14
REGISTRY_IMAGE : ghcr.io/${{ github.repository }}
15
+ GO_VERSION : ' 1.23'
15
16
16
17
permissions :
17
18
contents : write
30
31
- name : Set up Go
31
32
uses : actions/setup-go@v5
32
33
with :
33
- go-version : ' 1.22.0 '
34
+ go-version : ${{ env.GO_VERSION }}
34
35
cache : true
35
36
36
37
- name : Test
55
56
- name : Set up Go
56
57
uses : actions/setup-go@v5
57
58
with :
58
- go-version : ' 1.22.0 '
59
+ go-version : ${{ env.GO_VERSION }}
59
60
cache : true
60
61
61
62
- name : Run GoReleaser build
Original file line number Diff line number Diff line change 1
1
# build app
2
- FROM golang:1.21 -alpine3.19 AS app-builder
2
+ FROM golang:1.23 -alpine3.20 AS app-builder
3
3
4
4
ARG VERSION=dev
5
5
ARG REVISION=dev
Original file line number Diff line number Diff line change 1
1
# 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
3
3
#RUN apk add --no-cache git tzdata
4
4
5
5
ENV SERVICE=omegabrr
Original file line number Diff line number Diff line change 1
1
# 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
3
3
RUN apk add --no-cache git tzdata
4
4
5
5
ENV SERVICE=omegabrr
Original file line number Diff line number Diff line change 1
1
module github.com/autobrr/omegabrr
2
2
3
- go 1.21
3
+ go 1.23.2
4
4
5
5
require (
6
6
github.com/blang/semver v3.5.1+incompatible
You can’t perform that action at this time.
0 commit comments