Skip to content

Commit 4de14bb

Browse files
committed
pin ubuntu used by github runners
1 parent b5242f2 commit 4de14bb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/ci.yml

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

1313
tag_release:
1414
needs: quality_checks
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
steps:
1717
- name: Checkout code
1818
uses: actions/checkout@v4

.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/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/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
release:
1515
needs: quality_checks
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v4

0 commit comments

Comments
 (0)