Skip to content

Commit 8ae3f43

Browse files
authored
Fix: [AEA-0000] - pin ubuntu in github actions and update python (#242)
## Summary - Routine Change ### Details - pin ubuntu version in github actions - update python version used
1 parent be5e9cb commit 8ae3f43

13 files changed

+639
-645
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
install_java: true
1717

1818
get_commit_id:
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-22.04
2020
outputs:
2121
commit_id: ${{ steps.commit_id.outputs.commit_id }}
2222
steps:
@@ -27,7 +27,7 @@ jobs:
2727
2828
tag_release:
2929
needs: quality_checks
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-22.04
3131
outputs:
3232
version_tag: ${{steps.output_version_tag.outputs.VERSION_TAG}}
3333
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
@@ -19,7 +19,7 @@ jobs:
1919
uses: ./.github/workflows/pr_title_check.yml
2020

2121
get_issue_number:
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-22.04
2323
needs: quality_checks
2424
outputs:
2525
issue_number: ${{steps.get_issue_number.outputs.result}}
@@ -46,7 +46,7 @@ jobs:
4646
result-encoding: string
4747

4848
get_commit_id:
49-
runs-on: ubuntu-latest
49+
runs-on: ubuntu-22.04
5050
outputs:
5151
commit_id: ${{ steps.commit_id.outputs.commit_id }}
5252
steps:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
install_java: true
1616

1717
get_commit_id:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-22.04
1919
outputs:
2020
commit_id: ${{ steps.commit_id.outputs.commit_id }}
2121
steps:
@@ -26,7 +26,7 @@ jobs:
2626
2727
tag_release:
2828
needs: quality_checks
29-
runs-on: ubuntu-latest
29+
runs-on: ubuntu-22.04
3030
outputs:
3131
version_tag: ${{steps.output_version_tag.outputs.VERSION_TAG}}
3232
steps:

.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

.github/workflows/sam_release_code.yml

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

5757
jobs:
5858
sam_release_code:
59-
runs-on: ubuntu-latest
59+
runs-on: ubuntu-22.04
6060
environment: ${{ inputs.TARGET_ENVIRONMENT }}
6161
permissions:
6262
id-token: write

0 commit comments

Comments
 (0)