Skip to content

Commit 16f97a0

Browse files
dionisio-bot[bot]ggazzojulio-rocketchat
authored
chore: bump ubuntu (#35980)
Co-authored-by: Guilherme Gazzo <guilhermegazzo@gmail.com> Co-authored-by: Julio Araujo <julio.araujo@rocket.chat>
1 parent 52deaf9 commit 16f97a0

13 files changed

Lines changed: 32 additions & 32 deletions

.github/workflows/ci-code-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515

1616
jobs:
1717
code-check:
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-24.04
1919

2020
name: ${{ matrix.check == 'ts' && 'TypeScript' || 'Code Lint' }}
2121

.github/workflows/ci-deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- develop
1010
jobs:
1111
deploy-preview:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: rharkor/caching-for-turbo@v1.5

.github/workflows/ci-test-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ env:
8181

8282
jobs:
8383
test:
84-
runs-on: ubuntu-20.04
84+
runs-on: ubuntu-24.04
8585
env:
8686
RC_DOCKERFILE: ${{ matrix.mongodb-version == '7.0' && inputs.rc-dockerfile-debian || inputs.rc-dockerfile }}
8787
RC_DOCKER_TAG: ${{ matrix.mongodb-version == '7.0' && inputs.rc-docker-tag-debian || inputs.rc-docker-tag }}
@@ -104,7 +104,7 @@ jobs:
104104

105105
- name: Setup kernel limits
106106
run: |
107-
sudo sysctl -w net.ipv4.ip_local_port_range="500 65535"
107+
echo "500 65535" > sudo tee -a /proc/sys/net/ipv4/ip_local_port_range
108108
sudo sysctl -w net.ipv4.tcp_mem="383865 511820 2303190"
109109
110110
echo fs.file-max=20000500 | sudo tee -a /etc/sysctl.conf

.github/workflows/ci-test-unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323

2424
jobs:
2525
test:
26-
runs-on: ubuntu-20.04
26+
runs-on: ubuntu-24.04
2727

2828
name: Unit Tests
2929

.github/workflows/ci.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323
jobs:
2424
release-versions:
2525
name: ⚙️ Variables Setup
26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-24.04
2727
outputs:
2828
release: ${{ steps.by-tag.outputs.release }}
2929
latest-release: ${{ steps.latest.outputs.latest-release }}
@@ -94,7 +94,7 @@ jobs:
9494
9595
notify-draft-services:
9696
name: 🚀 Notify external services - draft
97-
runs-on: ubuntu-20.04
97+
runs-on: ubuntu-24.04
9898
needs: [release-versions]
9999
steps:
100100
- uses: actions/checkout@v4
@@ -137,7 +137,7 @@ jobs:
137137
packages-build:
138138
name: 📦 Build Packages
139139
needs: [release-versions, notify-draft-services]
140-
runs-on: ubuntu-20.04
140+
runs-on: ubuntu-24.04
141141
steps:
142142
- name: Github Info
143143
run: |
@@ -188,7 +188,7 @@ jobs:
188188
include-hidden-files: true
189189

190190
deploy-preview:
191-
runs-on: ubuntu-latest
191+
runs-on: ubuntu-24.04
192192
needs: [release-versions, packages-build]
193193
steps:
194194
- uses: actions/checkout@v3
@@ -226,7 +226,7 @@ jobs:
226226
build:
227227
name: 📦 Meteor Build - coverage
228228
needs: [release-versions, packages-build]
229-
runs-on: ubuntu-20.04
229+
runs-on: ubuntu-24.04
230230

231231
steps:
232232
- name: Collect Workflow Telemetry
@@ -257,7 +257,7 @@ jobs:
257257
name: 📦 Meteor Build - official
258258
needs: [tests-done, release-versions, packages-build]
259259
if: (github.event_name == 'release' || github.ref == 'refs/heads/develop')
260-
runs-on: ubuntu-20.04
260+
runs-on: ubuntu-24.04
261261

262262
steps:
263263
- name: Collect Workflow Telemetry
@@ -287,7 +287,7 @@ jobs:
287287
# TODO: this should go away once upstream builds are fixed
288288
build-matrix-rust-bindings-for-alpine:
289289
name: Builds matrix rust bindings against alpine
290-
runs-on: ubuntu-latest
290+
runs-on: ubuntu-24.04
291291
steps:
292292
- name: check cache for matrix-rust-sdk-crypto-nodejs
293293
id: matrix-rust-sdk-crypto-nodejs
@@ -332,7 +332,7 @@ jobs:
332332
build-gh-docker-coverage:
333333
name: 🚢 Build Docker Images for Testing
334334
needs: [build, release-versions, build-matrix-rust-bindings-for-alpine]
335-
runs-on: ubuntu-20.04
335+
runs-on: ubuntu-24.04
336336

337337
env:
338338
RC_DOCKERFILE: ${{ matrix.platform == 'debian' && needs.release-versions.outputs.rc-dockerfile-debian || needs.release-versions.outputs.rc-dockerfile }}
@@ -368,7 +368,7 @@ jobs:
368368
build-gh-docker:
369369
name: 🚢 Build Docker Images for Production
370370
needs: [build-prod, release-versions]
371-
runs-on: ubuntu-20.04
371+
runs-on: ubuntu-24.04
372372

373373
env:
374374
RC_DOCKERFILE: ${{ matrix.platform == 'debian' && needs.release-versions.outputs.rc-dockerfile-debian || needs.release-versions.outputs.rc-dockerfile }}
@@ -561,7 +561,7 @@ jobs:
561561

562562
tests-done:
563563
name: ✅ Tests Done
564-
runs-on: ubuntu-20.04
564+
runs-on: ubuntu-24.04
565565
needs: [checks, test-unit, test-api, test-ui, test-api-ee, test-ui-ee, test-ui-ee-no-watcher]
566566
if: always()
567567
steps:
@@ -599,7 +599,7 @@ jobs:
599599
600600
deploy:
601601
name: 🚀 Publish build assets
602-
runs-on: ubuntu-20.04
602+
runs-on: ubuntu-24.04
603603
if: github.event_name == 'release' || github.ref == 'refs/heads/develop'
604604
needs: [build-gh-docker, release-versions]
605605

@@ -685,8 +685,8 @@ jobs:
685685

686686
docker-image-publish:
687687
name: 🚀 Publish Docker Image (main)
688-
runs-on: ubuntu-20.04
689-
needs: [deploy, build-docker-preview, release-versions]
688+
runs-on: ubuntu-24.04
689+
needs: [deploy, release-versions]
690690

691691
strategy:
692692
matrix:
@@ -796,7 +796,7 @@ jobs:
796796
797797
services-docker-image-publish:
798798
name: 🚀 Publish Docker Image (services)
799-
runs-on: ubuntu-20.04
799+
runs-on: ubuntu-24.04
800800
needs: [deploy, release-versions]
801801

802802
strategy:
@@ -885,7 +885,7 @@ jobs:
885885
886886
notify-services:
887887
name: 🚀 Notify external services
888-
runs-on: ubuntu-20.04
888+
runs-on: ubuntu-24.04
889889
needs:
890890
- services-docker-image-publish
891891
- docker-image-publish

.github/workflows/new-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222

2323
jobs:
2424
new-release:
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-24.04
2626

2727
steps:
2828
- uses: actions/checkout@v4

.github/workflows/pr-title-checker.yml

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

1111
jobs:
1212
check:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: thehanimo/pr-title-checker@v1.4.2
1616
with:

.github/workflows/pr-update-description.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
99

1010
jobs:
1111
update-pr:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
if: startsWith(github.head_ref, 'release-')
1414
steps:
1515
- name: Checkout Repo

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
jobs:
1414
release:
1515
name: Release
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout Repo
1919
uses: actions/checkout@v4

.github/workflows/release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
- cron: '28 0 20 * *' # run at minute 28 to avoid the chance of delay due to high load on GH
55
jobs:
66
new-release:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-24.04
88
steps:
99
- uses: actions/checkout@v4
1010
with:

0 commit comments

Comments
 (0)