Skip to content

Commit 947cc17

Browse files
authored
Fix: [AEA-0000] - pin ubuntu verison used by github runners (#69)
## Summary - Routine Change ### Details - pin ubuntu version used by github runners
1 parent 7c3ec2d commit 947cc17

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

.github/workflows/cdk_package_code.yml

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

1414
jobs:
1515
package_code:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
permissions:
1818
id-token: write
1919
contents: read

.github/workflows/cdk_release_code.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
required: true
2626
jobs:
2727
release_code:
28-
runs-on: ubuntu-latest
28+
runs-on: ubuntu-22.04
2929
environment: ${{ inputs.TARGET_ENVIRONMENT }}
3030
name: deploy cdk app
3131
permissions:
@@ -125,7 +125,7 @@ jobs:
125125
shell: bash
126126

127127
update_github_pages:
128-
runs-on: ubuntu-latest
128+
runs-on: ubuntu-22.04
129129
environment: ${{ inputs.TARGET_ENVIRONMENT }}
130130
if: ${{ always() && !failure() && !cancelled() }}
131131
needs: [release_code]

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
1515

1616
get_commit_id:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
outputs:
1919
commit_id: ${{ steps.commit_id.outputs.commit_id }}
2020
steps:
@@ -25,7 +25,7 @@ jobs:
2525
2626
tag_release:
2727
needs: quality_checks
28-
runs-on: ubuntu-latest
28+
runs-on: ubuntu-22.04
2929
outputs:
3030
version_tag: ${{ steps.output_version_tag.outputs.VERSION_TAG }}
3131
steps:

.github/workflows/combine_dependabot_prs.yml

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

2323
jobs:
2424
combine-prs:
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04
2626
steps:
2727
- uses: actions/github-script@v7
2828
id: create-combined-pr

.github/workflows/create_release_notes.yml

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

3434
jobs:
3535
create_release_notes:
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-22.04
3737
environment: ${{ inputs.TARGET_ENVIRONMENT }}
3838
permissions:
3939
id-token: write

.github/workflows/dependabot_auto_approve_and_merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77

88
jobs:
99
dependabot:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
if: ${{ github.actor == 'dependabot[bot]' }}
1212
steps:
1313
- name: Get token from Github App

.github/workflows/pr_link.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
types: [opened]
55
jobs:
66
link-ticket:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04
88
env:
99
REF: ${{ github.event.pull_request.head.ref }}
1010
steps:

.github/workflows/pr_title_check.yml

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

66
jobs:
77
pr_title_format_check:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99
steps:
1010
- name: Check PR Title is Prefixed with Change Type
1111
env:

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: ./.github/workflows/pr_title_check.yml
1818

1919
get_issue_number:
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-22.04
2121
outputs:
2222
issue_number: ${{steps.get_issue_number.outputs.result}}
2323

@@ -43,7 +43,7 @@ jobs:
4343
result-encoding: string
4444

4545
get_commit_id:
46-
runs-on: ubuntu-latest
46+
runs-on: ubuntu-22.04
4747
outputs:
4848
commit_id: ${{ steps.commit_id.outputs.commit_id }}
4949
steps:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
1414

1515
get_commit_id:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
outputs:
1818
commit_id: ${{ steps.commit_id.outputs.commit_id }}
1919
steps:
@@ -24,7 +24,7 @@ jobs:
2424
2525
tag_release:
2626
needs: quality_checks
27-
runs-on: ubuntu-latest
27+
runs-on: ubuntu-22.04
2828
outputs:
2929
version_tag: ${{ steps.output_version_tag.outputs.VERSION_TAG }}
3030
steps:

0 commit comments

Comments
 (0)