Skip to content

Commit ef93267

Browse files
authored
Fix: [AEA-0000] - pin ubuntu image to 22.04 (#216)
## Summary - Routine Change ### Details - pin ubuntu image to 22.04
1 parent addef58 commit ef93267

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/auto-merge-dependabot.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/regression_tests.yml

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

4646
jobs:
4747
regression_tests:
48-
runs-on: ubuntu-latest
48+
runs-on: ubuntu-22.04
4949
environment: ${{ inputs.environment }}
5050
steps:
5151
- name: Checkout

.github/workflows/release.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
spec_version: ${{steps.output_version_tag.outputs.SPEC_VERSION}}
3131
steps:

0 commit comments

Comments
 (0)