From ae0fde4f2749bb81d7349928e19bdc483b472e84 Mon Sep 17 00:00:00 2001 From: Phil Rzewski Date: Thu, 13 Feb 2025 09:50:14 -0800 Subject: [PATCH] In Actions workflows, move from ubuntu-20.04 to ubuntu-22.04 (#3169) --- .github/workflows/advance-zed.yml | 2 +- .github/workflows/build-insiders.yml | 4 ++-- .github/workflows/build.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/e2e.yml | 2 +- .github/workflows/markdown-link-check.yml | 2 +- .github/workflows/notify-docs-update.yaml | 2 +- .github/workflows/notify-main-failure.yml | 2 +- .github/workflows/release-insiders.yml | 6 +++--- .github/workflows/release.yml | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/advance-zed.yml b/.github/workflows/advance-zed.yml index d60c0adda4..449c6160b0 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 60c711f505..aa5d7e77b7 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 9eba6d7024..88365865fd 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 5ba35c9622..58503f6cb9 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 e4d39dd032..e29533642b 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 9859bb46bd..861e279c99 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 dffab5834b..578ee25ab1 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 e454b3885c..441037dfa7 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 678afd8652..ee8999eac0 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 32686ced64..c2ee31b54c 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