diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 59944b9f..3eb84015 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -8,6 +8,9 @@ on: release: types: [created] +env: + GO_VERSION: 1.22.5 + jobs: # most binaries can be built on linux machine which is the most cost-efficient on GitHub actions # for building darwin-arm64 binary we need Xcode, therefore, we need to build it on MacOS @@ -22,7 +25,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '${{ vars.GO_VERSION }}' + go-version: '${{ env.GO_VERSION }}' - name: Run Makefile run: | @@ -50,7 +53,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '${{ vars.GO_VERSION }}' + go-version: '${{ env.GO_VERSION }}' - name: Run Makefile run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 4363c341..cc5a46df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # AWS SSO CLI Changelog -## [v2.0.0-beta4] - 2024-XX-XX +## [v2.0.0-beta4] - 2024-09-29 ### Bugs