Skip to content

Commit

Permalink
ci: pin runner version to Ubuntu 20.04
Browse files Browse the repository at this point in the history
Now the `ubuntu-latest` label points to Ubuntu 22.04 instead of 20.04.
Due to this fact, the testing workflow started to fail with an error
like this:

    Version 3.5 was not found in the local cache
    Error: Version 3.5 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

Pin the runner version to Ubuntu 20.04 to avoid the error above.
  • Loading branch information
ylobankov committed Dec 2, 2022
1 parent 0c52f88 commit 8fa7c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
github.event.pull_request.head.repo.full_name != github.repository ) &&
( github.repository == 'tarantool/test-run' )

runs-on: ubuntu-latest
runs-on: ubuntu-20.04

strategy:
fail-fast: false
Expand Down

0 comments on commit 8fa7c13

Please sign in to comment.