Skip to content

Commit

Permalink
Pin Python version in docs YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarber-akamai committed Nov 21, 2024
1 parent 79dd968 commit b456bde
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Run Documentation Validation

on: pull_request

env:
DEFAULT_PYTHON_VERSION: "3.10"

jobs:
test-templated-docs:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -66,7 +69,7 @@ jobs:
- name: setup python 3
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}

- name: install dependencies
run: make deps
Expand Down

0 comments on commit b456bde

Please sign in to comment.