Skip to content

Commit

Permalink
dev: fix GO_VERSION in post release workflow (#4926)
Browse files Browse the repository at this point in the history
  • Loading branch information
silas authored Aug 19, 2024
1 parent 87dd8fe commit 741df1f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@ 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"
continue-on-error: true
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
Expand Down

0 comments on commit 741df1f

Please sign in to comment.