Skip to content

Commit

Permalink
Update to Go v1.20.6 (#252)
Browse files Browse the repository at this point in the history
* Update to Go v1.20.6

* Bump Go version in go.mod
  • Loading branch information
joanlopez authored Jul 24, 2023
1 parent 7790628 commit 5225a67
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .drone/drone.jsonnet
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local golang = 'golang:1.19.1';
local golang = 'golang:1.20.6';

local volumes = [{ name: 'docker', host: { path: '/var/run/docker.sock' } }, { name: 'gopath', temp: {} }];
local mounts = [{ name: 'gopath', path: '/go' }, { name: 'docker', path: '/var/run/docker.sock' }];
Expand Down
18 changes: 9 additions & 9 deletions .drone/drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ platform:

steps:
- name: download
image: golang:1.19.1
image: golang:1.20.6
commands:
- go mod download
volumes:
Expand All @@ -19,7 +19,7 @@ steps:
path: /var/run/docker.sock

- name: lint
image: golang:1.19.1
image: golang:1.20.6
commands:
- make lint
volumes:
Expand All @@ -31,7 +31,7 @@ steps:
- download

- name: test
image: golang:1.19.1
image: golang:1.20.6
commands:
- go test ./...
volumes:
Expand Down Expand Up @@ -71,7 +71,7 @@ platform:

steps:
- name: fetch-tags
image: golang:1.19.1
image: golang:1.20.6
commands:
- git fetch origin --tags
volumes:
Expand All @@ -81,7 +81,7 @@ steps:
path: /var/run/docker.sock

- name: cross
image: golang:1.19.1
image: golang:1.20.6
commands:
- make cross
volumes:
Expand Down Expand Up @@ -125,7 +125,7 @@ platform:

steps:
- name: static
image: golang:1.19.1
image: golang:1.20.6
commands:
- make static
volumes:
Expand Down Expand Up @@ -172,7 +172,7 @@ platform:

steps:
- name: static
image: golang:1.19.1
image: golang:1.20.6
commands:
- make static
volumes:
Expand Down Expand Up @@ -219,7 +219,7 @@ platform:

steps:
- name: static
image: golang:1.19.1
image: golang:1.20.6
commands:
- make static
volumes:
Expand Down Expand Up @@ -320,6 +320,6 @@ get:

---
kind: signature
hmac: c43c45c827c9fb5c2436edeebb7f04fdc115e79e219691524970aeb83d2ead4c
hmac: bc79c5325c183a42cea6ece31262a4ee2bdb0698650b5c4e8f74ca36e4267c55

...
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.1
FROM golang:1.20.6
ARG JSONNET_VERSION=v0.19.1
ARG JB_VERSION=v0.5.1
WORKDIR /app
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/grafana/grizzly

go 1.19
go 1.20

require (
github.com/fatih/color v1.13.0
Expand Down

0 comments on commit 5225a67

Please sign in to comment.