Compare commits

...

2 Commits

Author SHA1 Message Date
Rui Chen
ed9b9dd27c
Merge a852e3bbfb into 883490dfd0 2023-09-04 14:18:01 -04:00
Rui Chen
a852e3bbfb
chore: update to use go1.21
Signed-off-by: Rui Chen <rui@chenrui.dev>
2023-09-04 14:17:53 -04:00
2 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ jobs:
strategy: strategy:
matrix: matrix:
cache: [false, true] cache: [false, true]
go: [1.20.1] go: [1.21.0]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@ -61,10 +61,10 @@ steps:
> **Note**: Due to the peculiarities of YAML parsing, it is recommended to wrap the version in single quotation marks: > **Note**: Due to the peculiarities of YAML parsing, it is recommended to wrap the version in single quotation marks:
> >
> ```yaml > ```yaml
> go-version: '1.20' > go-version: '1.21'
> ``` > ```
> >
> The recommendation is based on the YAML parser's behavior, which interprets non-wrapped values as numbers and, in the case of version 1.20, trims it down to 1.2, which may not be very obvious. > The recommendation is based on the YAML parser's behavior, which interprets non-wrapped values as numbers and, in the case of version 1.21, trims it down to 1.2, which may not be very obvious.
Matching an unstable pre-release: Matching an unstable pre-release:
```yaml ```yaml