Skip to content

Commit 2c1df25

Browse files
committed
Update Go to 1.21
1 parent 23f77ee commit 2c1df25

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/tests.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ jobs:
1313
- name: Setup Go
1414
uses: actions/setup-go@v4
1515
with:
16-
go-version: 1.20.x
16+
go-version: 1.21.x
1717
check-latest: true
1818
cache: true
1919
- name: Setup golangci-lint
2020
uses: golangci/golangci-lint-action@v3
2121
with:
22+
version: v1.54.2
2223
args: --timeout 3m0s
2324
unit:
2425
needs: lint
@@ -29,7 +30,7 @@ jobs:
2930
- name: Setup Go
3031
uses: actions/setup-go@v4
3132
with:
32-
go-version: 1.20.x
33+
go-version: 1.21.x
3334
check-latest: true
3435
cache: true
3536
- name: Run tests
@@ -43,7 +44,7 @@ jobs:
4344
- name: Setup Go
4445
uses: actions/setup-go@v4
4546
with:
46-
go-version: 1.20.x
47+
go-version: 1.21.x
4748
check-latest: true
4849
cache: true
4950
- name: Run e2e
@@ -57,7 +58,7 @@ jobs:
5758
- name: Setup Go
5859
uses: actions/setup-go@v4
5960
with:
60-
go-version: 1.20.x
61+
go-version: 1.21.x
6162
check-latest: true
6263
cache: true
6364
- name: Run helm-docs

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Changed
1515

16+
- [#164](https://github.com/XenitAB/spegel/pull/164) Update Go to 1.21.
17+
1618
### Deprecated
1719

1820
### Removed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.20 as builder
1+
FROM golang:1.21 as builder
22
RUN mkdir /build
33
WORKDIR /build
44
COPY go.mod go.mod

0 commit comments

Comments
 (0)