Skip to content

Commit e98967b

Browse files
Update golang Docker tag to v1.24
1 parent 3341f83 commit e98967b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.drone.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pool:
1313
steps:
1414
- name: staticcheck
1515
pull: always
16-
image: golang:1.19
16+
image: golang:1.24
1717
environment:
1818
GO111MODULE: "on" # Explicitly enable Go modules
1919
commands:
@@ -25,7 +25,7 @@ steps:
2525

2626
- name: lint
2727
pull: always
28-
image: golang:1.19
28+
image: golang:1.24
2929
commands:
3030
- go get golang.org/x/lint/golint
3131
- go run golang.org/x/lint/golint -set_exit_status ./...
@@ -35,7 +35,7 @@ steps:
3535

3636
- name: vet
3737
pull: always
38-
image: golang:1.19
38+
image: golang:1.24
3939
commands:
4040
- go vet ./...
4141
volumes:
@@ -44,7 +44,7 @@ steps:
4444

4545
- name: test
4646
pull: always
47-
image: golang:1.19
47+
image: golang:1.24
4848
commands:
4949
- go test -cover -v ./...
5050
volumes:

0 commit comments

Comments
 (0)