We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d1a186d + 7169dcf commit 95a61f5Copy full SHA for 95a61f5
.github/workflows/build.yml
@@ -59,7 +59,7 @@ jobs:
59
- id: setup-python
60
uses: actions/setup-python@v5
61
with:
62
- python-version: "3.11"
+ python-version: ${{ steps.setup-env.outputs.python-version }}
63
# We need the Go version and Go cache location for the actions/cache step,
64
# so the Go installation must happen before that.
65
- id: setup-go
@@ -68,7 +68,7 @@ jobs:
68
# There is no expectation for actual Go code so we disable caching as
69
# it relies on the existence of a go.sum file.
70
cache: false
71
- go-version: "1.20"
+ go-version: ${{ steps.setup-env.outputs.go-version }}
72
- id: go-cache
73
name: Lookup Go cache directory
74
run: |
0 commit comments