File tree 8 files changed +120
-120
lines changed
8 files changed +120
-120
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 37
37
labels : ubuntu-latest-8-cores
38
38
continue-on-error : true
39
39
steps :
40
- - name : Setup Go
41
- uses : actions/setup-go@v4
42
- with :
43
- go-version : ' >=1.22.3'
44
-
45
40
- name : Generate a GitHub app installation token
46
41
id : generate_token
47
42
uses : tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
57
52
ref : main
58
53
path : ephemeral
59
54
55
+ - name : Setup Go
56
+ uses : actions/setup-go@v4
57
+ with :
58
+ go-version-file : ephemeral/go.mod
59
+
60
60
- name : Get latest grafana version number
61
61
run : |
62
62
# if package.json contains e.g. 11.0.0-pre, this writes 11.0.0 to version.txt
Original file line number Diff line number Diff line change 29
29
runs-on : ubuntu-latest
30
30
continue-on-error : true
31
31
steps :
32
- - name : Setup Go
33
- uses : actions/setup-go@v4
34
- with :
35
- go-version : ' >=1.22.3'
36
-
37
32
- name : Generate a GitHub app installation token
38
33
id : generate_token
39
34
uses : tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
49
44
ref : main
50
45
path : ephemeral
51
46
47
+ - name : Setup Go
48
+ uses : actions/setup-go@v4
49
+ with :
50
+ go-version-file : ephemeral/go.mod
51
+
52
52
- name : Get latest grafana version number
53
53
run : |
54
54
# if package.json contains e.g. 11.0.0-pre, this writes 11.0.0 to version.txt
Original file line number Diff line number Diff line change 3
3
ARG BASE_IMAGE=alpine:3.19.1
4
4
ARG JS_IMAGE=node:20-alpine
5
5
ARG JS_PLATFORM=linux/amd64
6
- ARG GO_IMAGE=golang:1.22.3 -alpine
6
+ ARG GO_IMAGE=golang:1.22.4 -alpine
7
7
8
8
ARG GO_SRC=go-builder
9
9
ARG JS_SRC=js-builder
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ include .bingo/Variables.mk
9
9
10
10
11
11
GO = go
12
- GO_VERSION = 1.22.3
12
+ GO_VERSION = 1.22.4
13
13
GO_FILES ?= ./pkg/... ./pkg/apiserver/... ./pkg/apimachinery/... ./pkg/promlib/...
14
14
SH_FILES ?= $(shell find ./scripts -name * .sh)
15
15
GO_RACE := $(shell [ -n "$(GO_RACE ) " -o -e ".go-race-enabled-locally" ] && echo 1 )
Original file line number Diff line number Diff line change 1
1
module github.com/grafana/grafana
2
2
3
- go 1.22.3
3
+ go 1.22.4
4
4
5
5
// Override docker/docker to avoid:
6
6
// go: github.com/drone-runners/[email protected] requires
Original file line number Diff line number Diff line change 1
- go 1.22.3
1
+ go 1.22.4
2
2
3
3
use (
4
4
.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ global variables
3
3
"""
4
4
5
5
grabpl_version = "v3.0.50"
6
- golang_version = "1.22.3 "
6
+ golang_version = "1.22.4 "
7
7
8
8
# nodejs_version should match what's in ".nvmrc", but without the v prefix.
9
9
nodejs_version = "20.9.0"
You can’t perform that action at this time.
0 commit comments