Skip to content

Commit 44bb141

Browse files
authored
Fix: [AEA-0000] - pin ubuntu version used by github runners (#78)
## Summary - Routine Change ### Details - pin ubuntu version used by github runner
1 parent a2a72d0 commit 44bb141

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
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/dependabot_auto_approve_and_merge.yml

Lines changed: 2 additions & 2 deletions
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
@@ -46,4 +46,4 @@ jobs:
4646
run: gh pr merge --auto --squash "$PR_URL"
4747
env:
4848
PR_URL: ${{github.event.pull_request.html_url}}
49-
GITHUB_TOKEN: ${{ steps.get_app_token.outputs.token }}
49+
GITHUB_TOKEN: ${{ steps.get_app_token.outputs.token }}

.github/workflows/docker_image_build.yml

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

1313
jobs:
1414
docker_image_build:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
permissions:
1717
id-token: write
1818
contents: read

.github/workflows/docker_image_upload.yml

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

2222
jobs:
2323
upload_docker_image:
24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-22.04
2525
environment: ${{ inputs.AWS_ENVIRONMENT }}
2626
permissions:
2727
id-token: write

.github/workflows/pr_title_check.yml

Lines changed: 2 additions & 2 deletions
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:
@@ -30,4 +30,4 @@ jobs:
3030
echo "PR title does not contain ticket or dependabot reference."
3131
echo "Please ensure PR title contains a ticket (eg. 'Fix: [AEA-####] - ...', or 'Chore: [dependabot] - ...')."
3232
exit 1
33-
fi
33+
fi

.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
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
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:

0 commit comments

Comments
 (0)