Skip to content

Commit fcd04a7

Browse files
authored
docs: using correct python specifier for docs action (open-telemetry#1293)
There is a build error with the docs Github action currently, that is due to incorrect Python specifier syntax. Run actions/setup-python@v2 Version py38 was not found in the local cache Error: Version py38 with arch x64 not found The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
1 parent aad033f commit fcd04a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- 'instrumentation/**'
1111
- 'opentelemetry-python/opentelemetry-api/src/opentelemetry/**'
1212
- 'opentelemetry-python/opentelemetry-sdk/src/opentelemetry/sdk/**'
13-
13+
1414
jobs:
1515
docs:
1616
runs-on: ubuntu-latest
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python py38
2020
uses: actions/setup-python@v2
2121
with:
22-
python-version: py38
22+
python-version: '3.8'
2323
- name: Build docs
2424
run: |
2525
pip install --upgrade tox

0 commit comments

Comments
 (0)