Skip to content

Commit ffb44e0

Browse files
authored
Fix: [AEA-0000] - pin ubuntu used by github runner (#1579)
## Summary - Routine Change ### Details - pin ubuntu used by gihub runner
1 parent a9190d4 commit ffb44e0

11 files changed

+14
-14
lines changed

.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
@@ -26,7 +26,7 @@ jobs:
2626
# This workflow contains a single job called "combine-prs"
2727
combine-prs:
2828
# The type of runner that the job will run on
29-
runs-on: ubuntu-latest
29+
runs-on: ubuntu-22.04
3030

3131
# Steps represent a sequence of tasks that will be executed as part of the job
3232
steps:

.github/workflows/delete_old_cloudformation_stacks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# This workflow contains a single job called "combine-prs"
1212
delete-old-cloudformation-stacks:
1313
# The type of runner that the job will run on
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-22.04
1515
permissions:
1616
id-token: write
1717
contents: read

.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
needs: quality_checks
2222
outputs:
2323
issue_number: ${{steps.get_issue_number.outputs.result}}
@@ -44,7 +44,7 @@ jobs:
4444
result-encoding: string
4545

4646
get_commit_id:
47-
runs-on: ubuntu-latest
47+
runs-on: ubuntu-22.04
4848
outputs:
4949
commit_id: ${{ steps.commit_id.outputs.commit_id }}
5050
steps:

.github/workflows/release.yml

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

1212
get_commit_id:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414
outputs:
1515
commit_id: ${{ steps.commit_id.outputs.commit_id }}
1616
steps:
@@ -21,7 +21,7 @@ jobs:
2121
2222
tag_release:
2323
needs: quality_checks
24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-22.04
2525
outputs:
2626
version_tag: ${{steps.output_version_tag.outputs.VERSION_TAG}}
2727
steps:

.github/workflows/run_regression_tests.yml

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

1919
jobs:
2020
run_regression_tests:
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2222
environment: ${{ inputs.ENVIRONMENT }}
2323
permissions:
2424
id-token: write

.github/workflows/sam_package_code.yml

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

66
jobs:
77
sam_package_code:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99
permissions:
1010
id-token: write
1111
contents: read

0 commit comments

Comments
 (0)