Skip to content

Commit 3428de3

Browse files
committed
changed go to v1.24
1 parent cc8a8c2 commit 3428de3

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### Changes
66
<!-- ### Known Issues -->
7-
7+
- moved to Go 1.24
88
### Known Issues
99
<!-- ## Contributors -->
1010

.github/workflows/build.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@v3
2020
with:
21-
go-version: '1.20'
21+
go-version: '1.24'
2222
check-latest: true
2323
- name: Run test coverage
2424
run: go test ./... -coverprofile=coverage.out

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Setup Go
4343
uses: actions/setup-go@v3
4444
with:
45-
go-version: '1.18'
45+
go-version: '1.24'
4646
check-latest: true
4747
# Initializes the CodeQL tools for scanning.
4848
- name: Initialize CodeQL

.github/workflows/release-new-version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Go
2020
uses: actions/setup-go@v3
2121
with:
22-
go-version: '1.20'
22+
go-version: '1.24'
2323
check-latest: true
2424
- name: version
2525
run: echo "::set-output name=version::$(git describe --tags --always --abbrev=0 --match='[0-9]*.[0-9]*.[0-9]*' 2> /dev/null)"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM golang:1.20-alpine AS build
2+
FROM golang:1.24-alpine AS build
33

44
COPY ./.git /tmp/build/.git
55
COPY ./cmd /tmp/build/cmd

go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module k8f
22

3-
go 1.20
3+
go 1.23.0
4+
45
toolchain go1.24.1
56

67
require (

0 commit comments

Comments
 (0)