Skip to content

Commit 674442f

Browse files
committed
bun ubuntu
1 parent c5f6734 commit 674442f

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

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

+1-1
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-latest
1919

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ env:
7575

7676
jobs:
7777
test:
78-
runs-on: ubuntu-20.04
78+
runs-on: ubuntu-latest
7979
env:
8080
RC_DOCKERFILE: ${{ inputs.rc-dockerfile }}.${{ (matrix.mongodb-version == '7.0' && 'debian' && false) || 'alpine' }}
8181
RC_DOCKER_TAG: ${{ inputs.rc-docker-tag }}.${{ (matrix.mongodb-version == '7.0' && 'debian' && false) || 'alpine' }}

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

+1-1
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-latest
2727

2828
name: Unit Tests
2929

.github/workflows/ci.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
9494
notify-draft-services:
9595
name: 🚀 Notify external services - draft
96-
runs-on: ubuntu-20.04
96+
runs-on: ubuntu-latest
9797
needs: [release-versions]
9898
steps:
9999
- uses: actions/checkout@v4
@@ -136,7 +136,7 @@ jobs:
136136
packages-build:
137137
name: 📦 Build Packages
138138
needs: [release-versions, notify-draft-services]
139-
runs-on: ubuntu-20.04
139+
runs-on: ubuntu-latest
140140
steps:
141141
- name: Github Info
142142
run: |
@@ -225,7 +225,7 @@ jobs:
225225
build:
226226
name: 📦 Meteor Build - coverage
227227
needs: [release-versions, packages-build]
228-
runs-on: ubuntu-20.04
228+
runs-on: ubuntu-latest
229229

230230
steps:
231231
- name: Collect Workflow Telemetry
@@ -256,7 +256,7 @@ jobs:
256256
name: 📦 Meteor Build - official
257257
needs: [tests-done, release-versions, packages-build]
258258
if: (github.event_name == 'release' || github.ref == 'refs/heads/develop')
259-
runs-on: ubuntu-20.04
259+
runs-on: ubuntu-latest
260260

261261
steps:
262262
- name: Collect Workflow Telemetry
@@ -331,7 +331,7 @@ jobs:
331331
build-gh-docker-coverage:
332332
name: 🚢 Build Docker Images for Testing
333333
needs: [build, release-versions, build-matrix-rust-bindings-for-alpine]
334-
runs-on: ubuntu-20.04
334+
runs-on: ubuntu-latest
335335

336336
env:
337337
RC_DOCKERFILE: ${{ needs.release-versions.outputs.rc-dockerfile }}.${{ matrix.platform }}
@@ -376,7 +376,7 @@ jobs:
376376
build-gh-docker:
377377
name: 🚢 Build Docker Images for Production
378378
needs: [build-prod, release-versions]
379-
runs-on: ubuntu-20.04
379+
runs-on: ubuntu-latest
380380

381381
env:
382382
RC_DOCKERFILE: ${{ needs.release-versions.outputs.rc-dockerfile }}.${{ matrix.platform }}
@@ -563,7 +563,7 @@ jobs:
563563

564564
tests-done:
565565
name: ✅ Tests Done
566-
runs-on: ubuntu-20.04
566+
runs-on: ubuntu-latest
567567
needs: [checks, test-unit, test-api, test-ui, test-api-ee, test-ui-ee, test-ui-ee-no-watcher]
568568
if: always()
569569
steps:
@@ -601,7 +601,7 @@ jobs:
601601
602602
deploy:
603603
name: 🚀 Publish build assets
604-
runs-on: ubuntu-20.04
604+
runs-on: ubuntu-latest
605605
if: github.event_name == 'release' || github.ref == 'refs/heads/develop'
606606
needs: [build-gh-docker, release-versions]
607607

@@ -655,7 +655,7 @@ jobs:
655655
656656
docker-image-publish:
657657
name: 🚀 Publish Docker Image (main)
658-
runs-on: ubuntu-20.04
658+
runs-on: ubuntu-latest
659659
needs: [deploy, release-versions]
660660

661661
strategy:
@@ -765,7 +765,7 @@ jobs:
765765
766766
services-docker-image-publish:
767767
name: 🚀 Publish Docker Image (services)
768-
runs-on: ubuntu-20.04
768+
runs-on: ubuntu-latest
769769
needs: [deploy, release-versions]
770770

771771
strategy:
@@ -854,7 +854,7 @@ jobs:
854854
855855
notify-services:
856856
name: 🚀 Notify external services
857-
runs-on: ubuntu-20.04
857+
runs-on: ubuntu-latest
858858
needs:
859859
- services-docker-image-publish
860860
- docker-image-publish

0 commit comments

Comments
 (0)