Skip to content

Commit 7776299

Browse files
committed
chore: update ubuntu 20.04 to ubuntu-latest
1 parent 16ffecd commit 7776299

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/build-cpp-filecoin.src.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
## You should `pre-commit install` or use `pre-commit-hook.sh`,
1414
## anyway please read .github/README.md
1515
check_workflow_yaml_coressponds_to_src_yaml:
16-
runs-on: ubuntu-20.04 #ubuntu-latest
16+
runs-on: ubuntu-latest
1717
#container: ubuntu:latest ## This is required as barrier between AWS-hosted runners and GitHub-hosted runners - they have different set of software, so run in container
1818
name: Check if github workflows were properly made from sources
1919
steps:
@@ -48,7 +48,7 @@ jobs:
4848
## Note: image is push only when DockerHub login-token pair available - not to PRs from forks.
4949
Docker-fuhon-builder:
5050
needs: check_workflow_yaml_coressponds_to_src_yaml
51-
runs-on: ubuntu-20.04 #ubuntu-latest #[ self-hosted, Linux ]
51+
runs-on: ubuntu-latest #[ self-hosted, Linux ]
5252
env: &env_dockerhub
5353
DOCKERHUB_ORG: soramitsu ## Cannot use ${{ secrets.DOCKERHUB_ORG }}
5454
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
@@ -190,4 +190,4 @@ jobs:
190190
## if dockertag is already pushed then use it. But let it be empty when tag does not exist remotely.
191191
dockertag: ${{steps.dockertag.outputs.dockertag}}
192192
container: ${{steps.dockertag_already.outputs.container}}
193-
pushed: ${{ steps.docker_login.outcome == 'success' && steps.build_and_push.outcome == 'success' }}
193+
pushed: ${{ steps.docker_login.outcome == 'success' && steps.build_and_push.outcome == 'success' }}

.github/workflows/asan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
1616
with:

.github/workflows/build-cpp-filecoin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
## You should `pre-commit install` or use `pre-commit-hook.sh`,
1515
## anyway please read .github/README.md
1616
check_workflow_yaml_coressponds_to_src_yaml:
17-
runs-on: ubuntu-20.04 #ubuntu-latest
17+
runs-on: ubuntu-latest
1818
#container: ubuntu:latest ## This is required as barrier between AWS-hosted runners and GitHub-hosted runners - they have different set of software, so run in container
1919
name: Check if github workflows were properly made from sources
2020
steps:
@@ -43,7 +43,7 @@ jobs:
4343
## Note: image is push only when DockerHub login-token pair available - not to PRs from forks.
4444
Docker-fuhon-builder:
4545
needs: check_workflow_yaml_coressponds_to_src_yaml
46-
runs-on: ubuntu-20.04 #ubuntu-latest #[ self-hosted, Linux ]
46+
runs-on: ubuntu-latest #[ self-hosted, Linux ]
4747
env:
4848
DOCKERHUB_ORG: soramitsu ## Cannot use ${{ secrets.DOCKERHUB_ORG }}
4949
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
# 3 jobs in total
18-
os: [ ubuntu-20.04, macOS-latest ]
18+
os: [ ubuntu-latest, macOS-latest ]
1919
compiler: [ {
2020
"cc": "gcc",
2121
"cxx": "g++"
@@ -59,12 +59,12 @@ jobs:
5959
sudo apt-get update
6060
sudo apt-get install -y ninja-build python-setuptools pkg-config ocl-icd-* opencl-headers libhwloc-dev libhidapi-dev
6161
fi
62-
62+
6363
pip3 -V || sudo python3 -m pip install --upgrade pip
6464
sudo pip3 install scikit-build
6565
sudo pip3 install requests gitpython gcovr pyyaml
6666
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y
67-
67+
6868
# Workaround to provide additional free space for testing.
6969
# https://github.com/actions/virtual-environments/issues/2875
7070
sudo rm -rf /usr/share/dotnet

.github/workflows/lsan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
1616
with:

.github/workflows/ubsan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
1616
with:

0 commit comments

Comments
 (0)