diff --git a/.github/workflows/advance-zed.yml b/.github/workflows/advance-zed.yml index d60c0adda..449c6160b 100644 --- a/.github/workflows/advance-zed.yml +++ b/.github/workflows/advance-zed.yml @@ -24,7 +24,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04] + os: [ubuntu-22.04] steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/build-insiders.yml b/.github/workflows/build-insiders.yml index 60c711f50..aa5d7e77b 100644 --- a/.github/workflows/build-insiders.yml +++ b/.github/workflows/build-insiders.yml @@ -14,7 +14,7 @@ on: jobs: check_latest: name: Get last released version - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Get last released version id: latest_release @@ -30,7 +30,7 @@ jobs: strategy: matrix: # macos-13 is is Intel-based (x64), macos-14 is Apple Silicon (arm64) - platform: [windows-2019, macos-13, macos-14, ubuntu-20.04] + platform: [windows-2019, macos-13, macos-14, ubuntu-22.04] runs-on: ${{ matrix.platform }} steps: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9eba6d702..88365865f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: # macos-13 is is Intel-based (x64), macos-14 is Apple Silicon (arm64) - platform: [macos-13, macos-14, ubuntu-20.04, windows-2019] + platform: [macos-13, macos-14, ubuntu-22.04, windows-2019] runs-on: ${{ matrix.platform }} steps: - name: Checkout Zui diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ba35c962..58503f6cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: # macos-13 is is Intel-based (x64), macos-14 is Apple Silicon (arm64) - os: [macos-13, macos-14, ubuntu-20.04, windows-2019] + os: [macos-13, macos-14, ubuntu-22.04, windows-2019] steps: - run: git config --global core.autocrlf false - uses: actions/checkout@v4 diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index e4d39dd03..e29533642 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -9,7 +9,7 @@ on: required: true platforms: description: OS platforms to test on (list of strings in JSON format)" - default: '["ubuntu-20.04"]' + default: '["ubuntu-22.04"]' required: true video: description: Whether to record videos of Playwright test runs diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml index 9859bb46b..861e279c9 100644 --- a/.github/workflows/markdown-link-check.yml +++ b/.github/workflows/markdown-link-check.yml @@ -10,7 +10,7 @@ on: jobs: markdown-link-check: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - name: Extract branch name diff --git a/.github/workflows/notify-docs-update.yaml b/.github/workflows/notify-docs-update.yaml index dffab5834..578ee25ab 100644 --- a/.github/workflows/notify-docs-update.yaml +++ b/.github/workflows/notify-docs-update.yaml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Send dispatch event run: | diff --git a/.github/workflows/notify-main-failure.yml b/.github/workflows/notify-main-failure.yml index e454b3885..441037dfa 100644 --- a/.github/workflows/notify-main-failure.yml +++ b/.github/workflows/notify-main-failure.yml @@ -13,7 +13,7 @@ on: jobs: slackNotify: if: ${{ github.event.workflow_run.conclusion == 'failure' }} - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Notify Brim HQ of failure on main uses: tiloio/slack-webhook-action@v1.1.2 diff --git a/.github/workflows/release-insiders.yml b/.github/workflows/release-insiders.yml index 678afd865..ee8999eac 100644 --- a/.github/workflows/release-insiders.yml +++ b/.github/workflows/release-insiders.yml @@ -8,7 +8,7 @@ on: jobs: check_latest: name: Check If Release Is Needed - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Get last released version id: latest_release @@ -32,7 +32,7 @@ jobs: strategy: matrix: # macos-13 is is Intel-based (x64), macos-14 is Apple Silicon (arm64) - platform: [windows-2019, macos-13, macos-14, ubuntu-20.04] + platform: [windows-2019, macos-13, macos-14, ubuntu-22.04] runs-on: ${{ matrix.platform }} steps: @@ -90,7 +90,7 @@ jobs: record_build_sha: needs: release name: Upload the Build Sha - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Create the build_sha file run: echo ${{ github.sha }} > build_sha.txt diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 32686ced6..c2ee31b54 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: # macos-13 is is Intel-based (x64), macos-14 is Apple Silicon (arm64) - platform: [macos-13, macos-14, ubuntu-20.04, windows-2019] + platform: [macos-13, macos-14, ubuntu-22.04, windows-2019] runs-on: ${{ matrix.platform }} steps: - name: Checkout Zui