Skip to content

Commit

Permalink
Go 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
dgkanatsios committed Oct 7, 2022
1 parent 845e7dd commit 85f636c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges.
go-version: 1.18.x
go-version: 1.19.x
- name: build Docker images
run: make builddockerlocal
- name: install kind binaries
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges.
go-version: 1.18.x
go-version: 1.19.x
- name: check if Go utils need to be executed
run: |
go fmt ./...
Expand Down
2 changes: 1 addition & 1 deletion build-env/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build stage
FROM golang:1.18 as builder
FROM golang:1.19 as builder

WORKDIR /workspace
# Copy the Go Module code
Expand Down
2 changes: 1 addition & 1 deletion cmd/initcontainer/Dockerfile.win
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18-nanoserver-1809 AS builder
FROM golang:1.19-nanoserver-1809 AS builder

WORKDIR /workspace
# Copy the Go Module code
Expand Down
2 changes: 1 addition & 1 deletion cmd/nodeagent/Dockerfile.win
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build stage
FROM golang:1.18-nanoserver-1809 AS builder
FROM golang:1.19-nanoserver-1809 AS builder

WORKDIR /workspace
# Copy the Go Module code
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/playfab/thundernetes

go 1.18
go 1.19

require (
github.com/caarlos0/env/v6 v6.9.3
Expand Down

0 comments on commit 85f636c

Please sign in to comment.