Skip to content

Commit

Permalink
Fix: [AEA-0000 ] - pin ubuntu version used by github runner (#214)
Browse files Browse the repository at this point in the history
## Summary

- Routine Change

### Details

- pin ubuntu image used by github runner
  • Loading branch information
anthony-nhs authored Jan 10, 2025
1 parent 9c0a3ee commit 3d55082
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/combine-dependabot-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# This workflow contains a single job called "combine-prs"
combine-prs:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot_auto_approve_and_merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:

jobs:
dependabot:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Get token from Github App
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/merge_to_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

build:
name: build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-java@v4
with:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
package_code:
needs: [quality_checks, build]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-link.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
types: [opened]
jobs:
link-ticket:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
REF: ${{ github.event.pull_request.head.ref }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_title_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
pr_title_format_check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Check PR Title is Prefixed with Change Type
env:
Expand Down

0 comments on commit 3d55082

Please sign in to comment.