dev: fix GO_VERSION in post release workflow (#4926)

This commit is contained in:
Silas Sewell 2024-08-19 19:28:56 -04:00 committed by GitHub
parent 87dd8fe755
commit 741df1fc6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,13 @@ on:
types:
- published
env:
# https://github.com/actions/setup-go#supported-version-syntax
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
GO_VERSION: '1.23'
jobs:
update-docs:
name: "Update readme"
@ -11,11 +18,6 @@ jobs:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GOLANGCI_LINT_TOKEN }}
# https://github.com/actions/setup-go#supported-version-syntax
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
GO_VERSION: '1.23'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5