Skip to content

Commit ac76202

Browse files
committed
chore: update docs for goproxy
1 parent 64b3dcb commit ac76202

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

Diff for: docs/tasks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ href="https://go.dev/dl/go1.23.5.linux-amd64.tar.gz" >
7171
1. 删除 `/usr/local/go` 文件夹(如果存在)来删除任何以前的 Go 安装,然后将刚刚下载的存档解压缩到 `/usr/local`,在 `/usr/local/go` 中创建一个新的 Go 目录:
7272

7373
```bash
74-
$ rm -rf /usr/local/go && tar -C /usr/local -xzf go1.19.4.linux-amd64.tar.gz
74+
$ rm -rf /usr/local/go && tar -C /usr/local -xzf go1.23.5.linux-amd64.tar.gz
7575
```
7676

7777
:::note 注意

Diff for: i18n/en/docusaurus-plugin-content-docs/current/tasks.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -26,37 +26,37 @@ Go Website below:
2626
## 1. Downloads
2727

2828
:::note NOTE
29-
Here we take the `1.19` version as an example, and it is **not recommended** to install a specific version. Developers can choose according to their needs. For more versions, go to [Go to Golang](https://go.dev/dl/) to choose by yourself.
29+
Here we take the `1.23` version as an example, and it is **not recommended** to install a specific version. Developers can choose according to their needs. For more versions, go to [Go to Golang](https://go.dev/dl/) to choose by yourself.
3030
:::
3131

3232
<DocsCards>
3333

3434
<DocsCard
3535
header="Microsoft Windows"
36-
href="https://go.dev/dl/go1.19.4.windows-amd64.msi">
36+
href="https://go.dev/dl/go1.23.5.windows-amd64.msi">
3737
<p>Supported Windows 7 and beyond, Intel 64-bit processor</p>
38-
<a>go1.19.4.windows-amd64.msi(135MB)</a>
38+
<a>go1.23.5.windows-amd64.msi(135MB)</a>
3939
</DocsCard>
4040

4141
<DocsCard
4242
header="Apple macOS(ARM64)"
43-
href="https://go.dev/dl/go1.19.4.darwin-arm64.pkg">
43+
href="https://go.dev/dl/go1.23.5.darwin-arm64.pkg">
4444
<p>Support macOS 11 and later, Apple 64 bit processor</p>
45-
<a>go1.19.4.darwin-arm64.pkg(139MB)</a>
45+
<a>go1.23.5.darwin-arm64.pkg(139MB)</a>
4646
</DocsCard>
4747

4848
<DocsCard
4949
header="Apple macOS(x86-64)"
50-
href="https://go.dev/dl/go1.19.4.darwin-amd64.pkg">
50+
href="https://go.dev/dl/go1.23.5.darwin-amd64.pkg">
5151
<p>Supported macOS 10.13 and later, 64 bit processor</p>
52-
<a>go1.19.4.darwin-amd64.pkg(145MB)</a>
52+
<a>go1.23.5.darwin-amd64.pkg(145MB)</a>
5353
</DocsCard>
5454

5555
<DocsCard
5656
header="Linux"
57-
href="https://go.dev/dl/go1.19.4.linux-amd64.tar.gz">
57+
href="https://go.dev/dl/go1.23.5.linux-amd64.tar.gz">
5858
<p>Support Linux 2.6.32 and later, Intel 64-bit processor</p>
59-
<a>go1.19.4.linux-amd64.tar.gz(142MB)</a>
59+
<a>go1.23.5.linux-amd64.tar.gz(142MB)</a>
6060
</DocsCard>
6161

6262
</DocsCards>
@@ -71,7 +71,7 @@ Other versions and operating systems can [to go to the official network](https:/
7171
1 Delete the `/usr/local/go` folder (if available) to remove any previous Go installation and then compress the just downloaded archive to `/usr/local`, Create a new Go directory in `/usr/local/go`
7272

7373
```bash
74-
$ rm -rf /usr/local/go && tar -C /usr/local -xzf go1.19.4.linux-amd64.tar.gz
74+
$ rm -rf /usr/local/go && tar -C /usr/local -xzf go1.23.5.linux-amd64.tar.gz
7575
```
7676

7777
::NOTE

0 commit comments

Comments
 (0)