Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

get_commit_id:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
commit_id: ${{ steps.commit_id.outputs.commit_id }}
steps:
Expand All @@ -25,7 +25,7 @@ jobs:

tag_release:
needs: quality_checks
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
version_tag: ${{steps.output_version_tag.outputs.VERSION_TAG}}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .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 Expand Up @@ -46,4 +46,4 @@ jobs:
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{ steps.get_app_token.outputs.token }}
GITHUB_TOKEN: ${{ steps.get_app_token.outputs.token }}
2 changes: 1 addition & 1 deletion .github/workflows/docker_image_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
docker_image_build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
id-token: write
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_image_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:

jobs:
upload_docker_image:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
environment: ${{ inputs.AWS_ENVIRONMENT }}
permissions:
id-token: write
Expand Down
4 changes: 2 additions & 2 deletions .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 All @@ -30,4 +30,4 @@ jobs:
echo "PR title does not contain ticket or dependabot reference."
echo "Please ensure PR title contains a ticket (eg. 'Fix: [AEA-####] - ...', or 'Chore: [dependabot] - ...')."
exit 1
fi
fi
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

get_issue_number:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
issue_number: ${{steps.get_issue_number.outputs.result}}

Expand All @@ -43,7 +43,7 @@ jobs:
result-encoding: string

get_commit_id:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
commit_id: ${{ steps.commit_id.outputs.commit_id }}
steps:
Expand Down