Skip to content

Commit 074375e

Browse files
committed
Update ci/cd to use ubuntu 24.04
1 parent 5c4d94e commit 074375e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/child_repo.workflow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
jobs:
2020
dead-links:
2121
name: Check the dead-links on the repo
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-24.04
2323
steps:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4
@@ -51,7 +51,7 @@ jobs:
5151

5252
deploy:
5353
name: Deploy the repo
54-
runs-on: ubuntu-20.04
54+
runs-on: ubuntu-24.04
5555
needs: [dead-links]
5656
steps:
5757
- name: Checkout repository

.github/workflows/dead_links.workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
jobs:
2020
dead-links:
2121
name: Check the dead-links on the repo
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-24.04
2323
steps:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4

.github/workflows/deploy_whole_doc.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
jobs:
1414
prepare-matrix:
1515
name: Prepare matrix by getting the repo names from repositories.json
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout repository
1919
uses: actions/checkout@v4
@@ -35,7 +35,7 @@ jobs:
3535

3636
deploy_framework:
3737
name: Deploy framework
38-
runs-on: ubuntu-20.04
38+
runs-on: ubuntu-24.04
3939
env:
4040
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
4141
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -67,7 +67,7 @@ jobs:
6767
deploy_child_repo:
6868
name: Deploy child repo ${{ matrix.repo.repo_name }}-${{ matrix.repo.doc_version }}
6969
needs: [prepare-matrix, deploy_framework]
70-
runs-on: ubuntu-20.04
70+
runs-on: ubuntu-24.04
7171
strategy:
7272
matrix:
7373
repo: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }}
@@ -123,7 +123,7 @@ jobs:
123123
invalidate_cloudfront:
124124
name: Invalidate CloudFront
125125
needs: [deploy_child_repo]
126-
runs-on: ubuntu-20.04
126+
runs-on: ubuntu-24.04
127127
env:
128128
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
129129
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

0 commit comments

Comments
 (0)