Skip to content

Commit 1c876fc

Browse files
committed
chore: Update GitHub Actions workflow to use Ubuntu 22.04
- Change the operating system in the deployment matrix from Ubuntu 20.04 to 22.04 - Update the runner for the job to use Ubuntu 22.04 This update ensures compatibility with the latest features and improvements in the Ubuntu environment.
1 parent e04f132 commit 1c876fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deployment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
os: [ubuntu-20.04]
22-
# os: [ubuntu-18.04, ubuntu-20.04]
21+
os: [ubuntu-22.04]
22+
# os: [ubuntu-20.04, ubuntu-22.04]
2323
runs-on: ${{ matrix.os }}
2424
steps:
2525
- uses: actions/checkout@v4
@@ -58,7 +58,7 @@ jobs:
5858
needs:
5959
- test_linux
6060
# - test_win
61-
runs-on: ubuntu-latest
61+
runs-on: ubuntu-22.04
6262
steps:
6363
- name: Checkout code
6464
uses: actions/checkout@v4

0 commit comments

Comments
 (0)