Skip to content

Commit

Permalink
Revert to ubuntu 20.04 to avoid issue with python
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Oct 23, 2024
1 parent 51a74b7 commit bfc7ac1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/child_repo.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
dead-links:
name: Check the dead-links on the repo
runs-on: ubuntu-24.04
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

deploy:
name: Deploy the repo
runs-on: ubuntu-24.04
runs-on: ubuntu-20.04
needs: [dead-links]
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dead_links.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
dead-links:
name: Check the dead-links on the repo
runs-on: ubuntu-24.04
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy_whole_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
prepare-matrix:
name: Prepare matrix by getting the repo names from repositories.json
runs-on: ubuntu-24.04
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -35,7 +35,7 @@ jobs:

deploy_framework:
name: Deploy framework
runs-on: ubuntu-24.04
runs-on: ubuntu-20.04
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
deploy_child_repo:
name: Deploy child repo ${{ matrix.repo.repo_name }}-${{ matrix.repo.doc_version }}
needs: [prepare-matrix, deploy_framework]
runs-on: ubuntu-24.04
runs-on: ubuntu-20.04
strategy:
matrix:
repo: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }}
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
invalidate_cloudfront:
name: Invalidate CloudFront
needs: [deploy_child_repo]
runs-on: ubuntu-24.04
runs-on: ubuntu-20.04
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down

0 comments on commit bfc7ac1

Please sign in to comment.