Skip to content

Commit f5c6c05

Browse files
committed
actions: Use ubuntu-24.04 instead of ubuntu-latest
Use fixed version of Ubuntu runner. It prevents unexpected failures when default Ubuntu runner is updated by GitHub. It also limits number of changes which have to be backported to legacy branches. Signed-off-by: Jan Gałda <[email protected]>
1 parent 5a083ee commit f5c6c05

19 files changed

+21
-21
lines changed

.github/workflows/compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: pull_request
44

55
jobs:
66
compliance_job:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-24.04
88
name: Run compliance checks on patch series (PR)
99
steps:
1010
- name: Update PATH for west

.github/workflows/contribs.yml

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

66
jobs:
77
contribs:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04
99
name: Contribs
1010
steps:
1111
- name: Contribs

.github/workflows/create-upmerge-PRs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
auto-upmerge-create-PRs:
1616
if: github.repository == 'nrfconnect/sdk-nrf'
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-24.04
1818
steps:
1919
- name: Checkout sources
2020
uses: nrfconnect/action-checkout-west-update@main
@@ -88,7 +88,7 @@ jobs:
8888
gh pr create --base $PR_TARGET_BRANCH --title "manifest: Update revisions of upmerged projects (automatic upmerge)" --body "Automatic upmerge action" --label "CI-all-test" --label "auto-upmerge"
8989
9090
failure-notifier:
91-
runs-on: ubuntu-latest
91+
runs-on: ubuntu-24.04
9292
if: failure()
9393
needs: auto-upmerge-create-PRs
9494
env:

.github/workflows/dnm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
do-not-merge:
99
if: ${{ contains(github.event.*.labels.*.name, 'DNM') }}
1010
name: Prevent Merging
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Check for label
1414
run: |

.github/workflows/docbuild.yml

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

2828
jobs:
2929
build:
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-24.04
3131
concurrency:
3232
group: ${{ github.workflow }}-${{ github.ref }}
3333
cancel-in-progress: true

.github/workflows/docker.yml

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

88
jobs:
99
build:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-24.04
1111

1212
steps:
1313
- name: Checkout repository

.github/workflows/docpublish.yml

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

99
jobs:
1010
publish:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1313
steps:
1414
- name: Download artifacts

.github/workflows/docremove.yml

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

99
jobs:
1010
remove:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Try removal of PR-docs
1414
env:

.github/workflows/enforce-toolchain-synchronization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
jobs:
2121
check-prs:
2222
if: ${{ github.repository_owner == 'nrfconnect' && !github.event.created }} # Skip for new branches or forks
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-24.04
2424

2525
steps:
2626
- name: Define list of files to check

.github/workflows/labeler.yml

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

55
jobs:
66
triage:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-24.04
88
steps:
99
- uses: actions/[email protected]
1010
with:

0 commit comments

Comments
 (0)