Skip to content

Commit 66c8094

Browse files
authored
Pin GHA runner versions (#4461)
Signed-off-by: Michael Telatynski <[email protected]>
1 parent 3d51e31 commit 66c8094

13 files changed

+26
-26
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
backport:
1212
name: Backport
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
# Only react to merged PRs for security reasons.
1515
# See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target.
1616
if: >

.github/workflows/docs-pr-netlify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
netlify:
1111
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request'
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- name: 📥 Download artifact
1515
uses: actions/download-artifact@v4

.github/workflows/notify-downstream.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- repo: element-hq/element-web
1616
event: element-web-notify
1717

18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Notify matrix-react-sdk repo that a new SDK build is on develop so it can CI against it
2121
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # v3

.github/workflows/pull_request.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency: ${{ github.workflow }}-${{ github.event.pull_request.head.ref || gi
1212
jobs:
1313
changelog:
1414
name: Preview Changelog
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-24.04
1616
steps:
1717
- uses: mheap/github-action-required-labels@d25134c992b943fb6ad00c25ea00eb5988c0a9dd # v5
1818
if: github.event_name != 'merge_group'
@@ -29,7 +29,7 @@ jobs:
2929

3030
prevent-blocked:
3131
name: Prevent Blocked
32-
runs-on: ubuntu-latest
32+
runs-on: ubuntu-24.04
3333
permissions:
3434
pull-requests: read
3535
steps:
@@ -42,7 +42,7 @@ jobs:
4242
4343
community-prs:
4444
name: Label Community PRs
45-
runs-on: ubuntu-latest
45+
runs-on: ubuntu-24.04
4646
if: github.event.action == 'opened'
4747
steps:
4848
- name: Check membership
@@ -69,7 +69,7 @@ jobs:
6969
7070
close-if-fork-develop:
7171
name: Forbid develop branch fork contributions
72-
runs-on: ubuntu-latest
72+
runs-on: ubuntu-24.04
7373
if: >
7474
github.event.action == 'opened' &&
7575
github.event.pull_request.head.ref == 'develop' &&

.github/workflows/release-drafter-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
concurrency: release-drafter-action
1111
jobs:
1212
draft:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- name: 🧮 Checkout code
1616
uses: actions/checkout@v4

.github/workflows/release-gitflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
concurrency: ${{ github.workflow }}
1616
jobs:
1717
merge:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- uses: actions/checkout@v4
2121
with:

.github/workflows/release-make.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ on:
4141
jobs:
4242
release:
4343
name: Release
44-
runs-on: ubuntu-latest
44+
runs-on: ubuntu-24.04
4545
environment: Release
4646
steps:
4747
- name: Load GPG key
@@ -276,7 +276,7 @@ jobs:
276276
post-release:
277277
name: Post release steps
278278
needs: release
279-
runs-on: ubuntu-latest
279+
runs-on: ubuntu-24.04
280280
steps:
281281
- id: repository
282282
run: echo "REPO=${GITHUB_REPOSITORY#*/}" >> $GITHUB_OUTPUT
@@ -304,7 +304,7 @@ jobs:
304304
bump-downstreams:
305305
name: Update npm dependency in downstream projects
306306
needs: npm
307-
runs-on: ubuntu-latest
307+
runs-on: ubuntu-24.04
308308
if: inputs.downstreams
309309
strategy:
310310
matrix:

.github/workflows/release-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
npm:
1313
name: Publish to npm
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04
1515
outputs:
1616
id: ${{ steps.npm-publish.outputs.id }}
1717
steps:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: Publish Documentation
3535
needs: release
3636
if: inputs.docs
37-
runs-on: ubuntu-latest
37+
runs-on: ubuntu-24.04
3838
steps:
3939
- name: 🧮 Checkout code
4040
uses: actions/checkout@v4
@@ -60,7 +60,7 @@ jobs:
6060
environment:
6161
name: github-pages
6262
url: ${{ steps.deployment.outputs.page_url }}
63-
runs-on: ubuntu-latest
63+
runs-on: ubuntu-24.04
6464
needs: docs
6565
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
6666
permissions:

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
description: "Whether to combine multiple LCOV and jest-sonar-report files in coverage artifact"
1515
jobs:
1616
sonarqube:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-24.04
1818
if: |
1919
github.event.workflow_run.conclusion == 'success' &&
2020
github.event.workflow_run.event != 'merge_group'

0 commit comments

Comments
 (0)