Skip to content

Commit

Permalink
Revert hard coding of Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
felddy committed Oct 11, 2024
1 parent e5fdec2 commit 0f917ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- id: setup-python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: ${{ steps.setup-env.outputs.python-version }}
# We need the Go version and Go cache location for the actions/cache step,
# so the Go installation must happen before that.
- id: setup-go
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
- id: setup-python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: ${{ steps.setup-env.outputs.python-version }}
- uses: actions/cache@v3
env:
BASE_CACHE_KEY: "${{ github.job }}-${{ runner.os }}-\
Expand Down

0 comments on commit 0f917ae

Please sign in to comment.