File tree 5 files changed +10
-6
lines changed
5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 19
19
schedule :
20
20
- cron : ' 0 4 * * 6'
21
21
22
+ env :
23
+ GO_VERSION : ' 1.23.0'
24
+
22
25
jobs :
23
26
analyze :
24
27
name : Analyze (${{ matrix.language }})
61
64
- name : Set up Go
62
65
uses : actions/setup-go@v5
63
66
with :
64
- go-version : ' 1.22.0 '
67
+ go-version : ${{ env.GO_VERSION }}
65
68
cache : true
66
69
67
70
# Initializes the CodeQL tools for scanning.
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ concurrency:
27
27
env :
28
28
REGISTRY : ghcr.io
29
29
REGISTRY_IMAGE : ghcr.io/${{ github.repository }}
30
+ GO_VERSION : ' 1.23.0'
30
31
31
32
permissions :
32
33
contents : write
45
46
- name : Set up Go
46
47
uses : actions/setup-go@v5
47
48
with :
48
- go-version : ' 1.22.0 '
49
+ go-version : ${{ env.GO_VERSION }}
49
50
cache : true
50
51
51
52
- name : Test
64
65
- name : Set up Go
65
66
uses : actions/setup-go@v5
66
67
with :
67
- go-version : ' 1.22.0 '
68
+ go-version : ${{ env.GO_VERSION }}
68
69
cache : true
69
70
70
71
- name : Run GoReleaser build
Original file line number Diff line number Diff line change 1
1
# build app
2
- FROM golang:1.22 -alpine3.19 AS app-builder
2
+ FROM golang:1.23 -alpine3.20 AS app-builder
3
3
4
4
WORKDIR /src
5
5
Original file line number Diff line number Diff line change 1
1
# build base
2
- FROM --platform=$BUILDPLATFORM golang:1.22 -alpine3.19 AS app-base
2
+ FROM --platform=$BUILDPLATFORM golang:1.23 -alpine3.20 AS app-base
3
3
4
4
WORKDIR /src
5
5
Original file line number Diff line number Diff line change 1
1
module seasonpackarr
2
2
3
- go 1.22 .0
3
+ go 1.23 .0
4
4
5
5
require (
6
6
github.com/anacrolix/torrent v1.56.1
You can’t perform that action at this time.
0 commit comments