Skip to content

Commit fbd8925

Browse files
committed
[Workflows] Run GitHub workflows using latest Ubuntu vrsion rather than Ubuntu 20.04 as 20.04 has been deprecated in workflows. See actions/runner-images#11101
1 parent 2ede73c commit fbd8925

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/demo_deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency: ci-${{ github.ref }}
1313

1414
jobs:
1515
frontend-tests:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-latest
1717

1818
steps:
1919
- name: Checkout repo
@@ -43,7 +43,7 @@ jobs:
4343
working-directory: ./frontend
4444

4545
backend-tests:
46-
runs-on: ubuntu-20.04
46+
runs-on: ubuntu-latest
4747

4848
steps:
4949
- name: Checkout repo
@@ -62,7 +62,7 @@ jobs:
6262
run: pytest
6363

6464
update-infrastructure:
65-
runs-on: ubuntu-20.04
65+
runs-on: ubuntu-latest
6666

6767
needs: [frontend-tests, backend-tests]
6868

@@ -80,7 +80,7 @@ jobs:
8080
run: ./infrastructure/update-environment-infra.sh demo
8181

8282
build-and-deploy:
83-
runs-on: ubuntu-20.04
83+
runs-on: ubuntu-latest
8484

8585
needs: [update-infrastructure]
8686

.github/workflows/production_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
frontend-tests:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414

1515
steps:
1616
- name: Checkout repo
@@ -40,7 +40,7 @@ jobs:
4040
working-directory: ./frontend
4141

4242
backend-tests:
43-
runs-on: ubuntu-20.04
43+
runs-on: ubuntu-latest
4444

4545
steps:
4646
- name: Checkout repo
@@ -59,7 +59,7 @@ jobs:
5959
run: pytest
6060

6161
release:
62-
runs-on: ubuntu-20.04
62+
runs-on: ubuntu-latest
6363

6464
needs: [frontend-tests, backend-tests]
6565

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
frontend-tests:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111

1212
steps:
1313
- name: Checkout repo
@@ -37,7 +37,7 @@ jobs:
3737
working-directory: ./frontend
3838

3939
backend-tests:
40-
runs-on: ubuntu-20.04
40+
runs-on: ubuntu-latest
4141

4242
steps:
4343
- name: Checkout repo

0 commit comments

Comments
 (0)