Skip to content

Commit 040f390

Browse files
authored
chore(deps): bump go version to 1.23.0 (#134)
1 parent 5ea49f4 commit 040f390

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.github/workflows/codeql.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ on:
1919
schedule:
2020
- cron: '0 4 * * 6'
2121

22+
env:
23+
GO_VERSION: '1.23.0'
24+
2225
jobs:
2326
analyze:
2427
name: Analyze (${{ matrix.language }})
@@ -61,7 +64,7 @@ jobs:
6164
- name: Set up Go
6265
uses: actions/setup-go@v5
6366
with:
64-
go-version: '1.22.0'
67+
go-version: ${{ env.GO_VERSION }}
6568
cache: true
6669

6770
# Initializes the CodeQL tools for scanning.

.github/workflows/release.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ concurrency:
2727
env:
2828
REGISTRY: ghcr.io
2929
REGISTRY_IMAGE: ghcr.io/${{ github.repository }}
30+
GO_VERSION: '1.23.0'
3031

3132
permissions:
3233
contents: write
@@ -45,7 +46,7 @@ jobs:
4546
- name: Set up Go
4647
uses: actions/setup-go@v5
4748
with:
48-
go-version: '1.22.0'
49+
go-version: ${{ env.GO_VERSION }}
4950
cache: true
5051

5152
- name: Test
@@ -64,7 +65,7 @@ jobs:
6465
- name: Set up Go
6566
uses: actions/setup-go@v5
6667
with:
67-
go-version: '1.22.0'
68+
go-version: ${{ env.GO_VERSION }}
6869
cache: true
6970

7071
- 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.22-alpine3.19 AS app-builder
2+
FROM golang:1.23-alpine3.20 AS app-builder
33

44
WORKDIR /src
55

ci.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 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
33

44
WORKDIR /src
55

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module seasonpackarr
22

3-
go 1.22.0
3+
go 1.23.0
44

55
require (
66
github.com/anacrolix/torrent v1.56.1

0 commit comments

Comments
 (0)