Skip to content

Commit

Permalink
Temporarily constrain go version in deb build
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosNihelton committed Oct 17, 2023
1 parent a00badf commit e9be2de
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/qa-azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v4
# This step is a workaround because vulnerability checker requires Go 1.21.3 which is not yet available on the archive.
# That requirement only affects test code using mocks, so we don't yet depend on such contracts.
# We should be safe with Go 1.21.1 for a while, until dependencies start to rely on the latest version.
- name: Constrain go version
shell: bash
working-directory: wsl-pro-service
run: go mod edit -go=1.21.1
- name: Build debian package
uses: canonical/desktop-engineering/gh-actions/common/build-debian@main
with:
Expand Down

0 comments on commit e9be2de

Please sign in to comment.