Skip to content

Commit 51bf85e

Browse files
committed
ci: pin runner version to Ubuntu 20.04
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.
1 parent e608ba8 commit 51bf85e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
github.event.pull_request.head.repo.full_name != github.repository ) &&
99
( github.repository == 'tarantool/test-run' )
1010

11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-20.04
1212

1313
strategy:
1414
fail-fast: false

0 commit comments

Comments
 (0)