We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58c447b commit 9b433a3Copy full SHA for 9b433a3
1 file changed
.github/workflows/release-dispatch.yml
@@ -44,6 +44,7 @@ env:
44
# Default ddev version when callers don't pass `ddev-version`. Tracked by Renovate.
45
# renovate: datasource=pypi depName=ddev
46
DEFAULT_DDEV_VERSION: "16.0.0"
47
+ PYTHON_VERSION: "3.13"
48
49
jobs:
50
prepare:
@@ -59,6 +60,11 @@ jobs:
59
60
with:
61
fetch-depth: 0 # ddev needs full tag history
62
63
+ - name: Set up Python ${{ env.PYTHON_VERSION }}
64
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
65
+ with:
66
+ python-version: ${{ env.PYTHON_VERSION }}
67
+
68
- name: Install ddev
69
run: pip install "ddev==${{ inputs.ddev-version || env.DEFAULT_DDEV_VERSION }}"
70
0 commit comments