Unverified Commit e88dd9c3 authored by Igor Demin's avatar Igor Demin Committed by GitHub

Update runners to ubuntu-22.04 (#1055)

The current runners fail with:

This is a scheduled Ubuntu 20.04 retirement. Ubuntu 20.04 LTS runner
will be removed on 2025-04-15. For more details,
see https://github.com/actions/runner-images/issues/11101

GitHub Actions has encountered an internal error when running your job.
parent 1c4afac6
...@@ -128,7 +128,7 @@ jobs: ...@@ -128,7 +128,7 @@ jobs:
retention-days: 5 retention-days: 5
linux: linux:
runs-on: ubuntu-20.04 runs-on: ubuntu-22.04
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
name: 'Check out code' name: 'Check out code'
......
...@@ -13,7 +13,7 @@ on: ...@@ -13,7 +13,7 @@ on:
jobs: jobs:
web: web:
runs-on: ubuntu-20.04 runs-on: ubuntu-22.04
steps: steps:
- uses: browser-actions/setup-chrome@v1 - uses: browser-actions/setup-chrome@v1
with: with:
...@@ -35,7 +35,7 @@ jobs: ...@@ -35,7 +35,7 @@ jobs:
sudo apt-get update -y sudo apt-get update -y
sudo apt-get install binutils build-essential -y sudo apt-get install binutils build-essential -y
sudo apt-get install software-properties-common -y sudo apt-get install software-properties-common -y
sudo apt-get install python git curl wget -y sudo apt-get install python-is-python3 git curl wget -y
if [ -d ./emsdk ]; then if [ -d ./emsdk ]; then
cd ./emsdk cd ./emsdk
git pull git pull
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment