Skip to content

Commit 741df1f

Browse files
authored
dev: fix GO_VERSION in post release workflow (#4926)
1 parent 87dd8fe commit 741df1f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/post-release.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,20 @@ on:
44
types:
55
- published
66

7+
env:
8+
# https://github.com/actions/setup-go#supported-version-syntax
9+
# ex:
10+
# - 1.18beta1 -> 1.18.0-beta.1
11+
# - 1.18rc1 -> 1.18.0-rc.1
12+
GO_VERSION: '1.23'
13+
714
jobs:
815
update-docs:
916
name: "Update readme"
1017
continue-on-error: true
1118
runs-on: ubuntu-latest
1219
env:
1320
GITHUB_TOKEN: ${{ secrets.GOLANGCI_LINT_TOKEN }}
14-
# https://github.com/actions/setup-go#supported-version-syntax
15-
# ex:
16-
# - 1.18beta1 -> 1.18.0-beta.1
17-
# - 1.18rc1 -> 1.18.0-rc.1
18-
GO_VERSION: '1.23'
1921
steps:
2022
- uses: actions/checkout@v4
2123
- uses: actions/setup-go@v5

0 commit comments

Comments
 (0)