Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
code-check:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ env:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
RC_DOCKERFILE: ${{ matrix.mongodb-version == '6.0' && inputs.rc-dockerfile-alpine || inputs.rc-dockerfile }}
RC_DOCKER_TAG: ${{ matrix.mongodb-version == '6.0' && inputs.rc-docker-tag-alpine || inputs.rc-docker-tag }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

name: Unit Tests

Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
release-versions:
name: ⚙️ Variables Setup
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
release: ${{ steps.by-tag.outputs.release }}
latest-release: ${{ steps.latest.outputs.latest-release }}
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

notify-draft-services:
name: 🚀 Notify external services - draft
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
Comment thread
MarcosSpessatto marked this conversation as resolved.
needs: [release-versions]
steps:
- uses: Bhacaz/checkout-files@v2
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
packages-build:
name: 📦 Build Packages
needs: [release-versions, notify-draft-services]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Github Info
run: |
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
build:
name: 📦 Meteor Build - coverage
needs: [release-versions, packages-build]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Github Info
Expand All @@ -189,7 +189,7 @@ jobs:
name: 📦 Meteor Build - official
needs: [tests-done, release-versions, packages-build]
if: (github.event_name == 'release' || github.ref == 'refs/heads/develop')
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Github Info
Expand All @@ -212,7 +212,7 @@ jobs:
build-gh-docker-coverage:
name: 🚢 Build Docker Images for Testing
needs: [build, release-versions]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

env:
RC_DOCKERFILE: ${{ matrix.platform == 'alpine' && needs.release-versions.outputs.rc-dockerfile-alpine || needs.release-versions.outputs.rc-dockerfile }}
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
build-gh-docker:
name: 🚢 Build Docker Images for Production
needs: [build-prod, release-versions]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

env:
RC_DOCKERFILE: ${{ matrix.platform == 'alpine' && needs.release-versions.outputs.rc-dockerfile-alpine || needs.release-versions.outputs.rc-dockerfile }}
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:

tests-done:
name: ✅ Tests Done
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [checks, test-unit, test-api, test-ui, test-api-ee, test-ui-ee]

steps:
Expand All @@ -399,7 +399,7 @@ jobs:

deploy:
name: 🚀 Publish build assets
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: github.event_name == 'release' || github.ref == 'refs/heads/develop'
needs: [build-gh-docker, release-versions]

Expand Down Expand Up @@ -451,7 +451,7 @@ jobs:

build-docker-preview:
name: 🚢 Build Docker Image (preview)
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [build, checks, release-versions]
if: github.event_name == 'release' || github.ref == 'refs/heads/develop'
steps:
Expand Down Expand Up @@ -481,7 +481,7 @@ jobs:

docker-image-publish:
name: 🚀 Publish Docker Image (main)
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [deploy, build-docker-preview, release-versions]

strategy:
Expand Down Expand Up @@ -592,7 +592,7 @@ jobs:

services-docker-image-publish:
name: 🚀 Publish Docker Image (services)
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [deploy, release-versions]

strategy:
Expand Down Expand Up @@ -681,7 +681,7 @@ jobs:

notify-services:
name: 🚀 Notify external services
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs:
- services-docker-image-publish
- docker-image-publish
Expand Down Expand Up @@ -725,7 +725,7 @@ jobs:
curl --fail https://releases.rocket.chat/$RC_VERSION/info

trigger-dependent-workflows:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.event_name == 'release'
needs:
- services-docker-image-publish
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:

jobs:
CodeQL-Build:
# CodeQL runs on ubuntu-latest and windows-latest
runs-on: ubuntu-latest
# CodeQL runs on ubuntu-22.04 and windows-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:

jobs:
new-release:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: thehanimo/pr-title-checker@v1.3.7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-update-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
update-pr:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: startsWith(github.head_ref, 'release-')
steps:
- name: Checkout Repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
release:
name: Release
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
close-issues:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
issues: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vulnerabilities-jira-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
IntegrateSecurityVulnerabilities:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: "Github vulnerabilities and jira board integration"
uses: RocketChat/github-vulnerabilities-jira-integration@v0.3
Expand Down