From 741df1fc6a4963c5f7d3961c8dc07092a63d9f00 Mon Sep 17 00:00:00 2001 From: Silas Sewell Date: Mon, 19 Aug 2024 19:28:56 -0400 Subject: [PATCH] dev: fix GO_VERSION in post release workflow (#4926) --- .github/workflows/post-release.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml index 0403d8f461c4..d8c1b8d7f855 100644 --- a/.github/workflows/post-release.yml +++ b/.github/workflows/post-release.yml @@ -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