Skip to content

Commit

Permalink
In Actions workflows, move from ubuntu-20.04 to ubuntu-22.04 (#3169)
Browse files Browse the repository at this point in the history
  • Loading branch information
philrz authored Feb 13, 2025
1 parent edbe753 commit ae0fde4
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/advance-zed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-insiders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notify-docs-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Send dispatch event
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notify-main-failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-insiders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ae0fde4

Please sign in to comment.