Skip to content

Commit 6d4f661

Browse files
authored
Merge pull request #42 from fluxcd/update-go-1.20
Update Go to 1.20
2 parents b53530c + 686ca63 commit 6d4f661

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
echo "version=${VERSION}" >> $GITHUB_OUTPUT
3535
- uses: actions/setup-go@v2
3636
with:
37-
go-version: 1.19.x
37+
go-version: 1.20.x
3838
- uses: actions/cache@v2
3939
with:
4040
path: ~/go/pkg/mod

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Go
2525
uses: actions/setup-go@v2
2626
with:
27-
go-version: 1.19.x
27+
go-version: 1.20.x
2828
- name: Run tests
2929
run: make test
3030
- name: Check if working tree is dirty

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ meeting](https://docs.google.com/document/d/1l_M0om0qUEN_NNiGgpqJ2tvsF2iioHkaARD
4040
### How to run the test suite
4141

4242
Prerequisites:
43-
* go >= 1.19
43+
* go >= 1.20
4444
* docker >= 20.10
4545
* kustomize >= 4.4
4646

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG GO_VERSION=1.19
2-
ARG XX_VERSION=1.1.0
1+
ARG GO_VERSION=1.20
2+
ARG XX_VERSION=1.2.1
33

44
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
55

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ manifests: controller-gen
5252

5353
# Run go tidy to cleanup go.mod
5454
tidy:
55-
rm -f go.sum; go mod tidy -compat=1.19
55+
rm -f go.sum; go mod tidy -compat=1.20
5656

5757
# Run go fmt against code
5858
fmt:

0 commit comments

Comments
 (0)