Skip to content

Commit 2896599

Browse files
authored
Merge pull request #2060 from github/mbg/go/1.22
Use Go 1.22 in workflows
2 parents 908a883 + e3a86ed commit 2896599

6 files changed

+24
-6
lines changed

.github/workflows/__go-tracing-autobuilder.yml

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-tracing-custom-build-steps.yml

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-tracing-legacy-workflow.yml

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/checks/go-tracing-autobuilder.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ env:
66
steps:
77
- uses: actions/setup-go@v5
88
with:
9-
go-version: "~1.21.1"
9+
go-version: "~1.22.0"
10+
# to avoid potentially misleading autobuilder results where we expect it to download
11+
# dependencies successfully, but they actually come from a warm cache
12+
cache: false
1013
- uses: ./../action/init
1114
with:
1215
languages: go

pr-checks/checks/go-tracing-custom-build-steps.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ operatingSystems: ["ubuntu", "macos"]
44
steps:
55
- uses: actions/setup-go@v5
66
with:
7-
go-version: "~1.21.1"
7+
go-version: "~1.22.0"
8+
# to avoid potentially misleading autobuilder results where we expect it to download
9+
# dependencies successfully, but they actually come from a warm cache
10+
cache: false
811
- uses: ./../action/init
912
with:
1013
languages: go

pr-checks/checks/go-tracing-legacy-workflow.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ env:
66
steps:
77
- uses: actions/setup-go@v5
88
with:
9-
go-version: "~1.21.1"
9+
go-version: "~1.22.0"
10+
# to avoid potentially misleading autobuilder results where we expect it to download
11+
# dependencies successfully, but they actually come from a warm cache
12+
cache: false
1013
- uses: ./../action/init
1114
with:
1215
languages: go

0 commit comments

Comments
 (0)