Skip to content

Commit 0e0d187

Browse files
authored
Merge pull request #3704 from bhcleek/go1.24
update to Go 1.24
2 parents 8af56e7 + ac86c55 commit 0e0d187

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
go: ['1.22','1.23']
30+
go: ['1.23','1.24']
3131
vim: ['vim-8.1', 'vim-8.2', 'nvim']
3232
steps:
3333
- name: setup Go

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/amd64 golang:1.22.3
1+
FROM --platform=linux/amd64 golang:1.24.1
22

33
RUN apt-get update -y --allow-insecure-repositories && \
44
apt-get install -y build-essential curl git libncurses5-dev python3-pip && \
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package main
2+
3+
func HelloWorld() string {
4+
return "not the hello you're looking for"
5+
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module vim-go.test/example
22

3-
go 1.16
3+
go 1.24

0 commit comments

Comments
 (0)