Skip to content

Commit 78ddaa3

Browse files
🥤 Bump to Go v1.22.2
1 parent 3955364 commit 78ddaa3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Set up Go toolchain
5454
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
5555
with:
56-
go-version: '1.22.1'
56+
go-version: '1.22.2'
5757
cache: false
5858

5959
- name: Install MinGW compiler(s)
@@ -149,7 +149,7 @@ jobs:
149149
- name: Set up Go toolchain
150150
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
151151
with:
152-
go-version: '1.22.1'
152+
go-version: '1.22.2'
153153
cache: false
154154
check-latest: true
155155

@@ -183,7 +183,7 @@ jobs:
183183
- name: Set up Go toolchain
184184
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
185185
with:
186-
go-version: '1.22.1'
186+
go-version: '1.22.2'
187187
cache: false
188188
check-latest: true
189189

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
id: setup-go
5353
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
5454
with:
55-
go-version: "1.22.1"
55+
go-version: '1.22.2'
5656
cache: false
5757
check-latest: true
5858

@@ -108,7 +108,7 @@ jobs:
108108
id: setup-go
109109
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
110110
with:
111-
go-version: "1.22.1"
111+
go-version: '1.22.2'
112112
cache: false
113113
check-latest: true
114114

scripts/ci/tools/linux/install_go.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ yum install -y wget
77
arch=$(uname -m)
88

99
if [ "$arch" == "x86_64" ]; then
10-
tarball="go1.22.1.linux-amd64.tar.gz"
10+
tarball="go1.22.2.linux-amd64.tar.gz"
1111
elif [[ "$arch" == "aarch64" || "$arch" == "arm64" ]]; then
12-
tarball="go1.22.1.linux-arm64.tar.gz"
12+
tarball="go1.22.2.linux-arm64.tar.gz"
1313
else
1414
echo "Unsupported architecture: $arch"
1515
exit 1

0 commit comments

Comments
 (0)