Skip to content

Commit 2199fd5

Browse files
committed
Bump build dependency to Ubuntu 22.04
1 parent 772f0f7 commit 2199fd5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,17 @@ jobs:
1515
# This workflow contains a single job called "build"
1616
build:
1717
# Build on the oldest supported ubuntu:
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-22.04
1919

2020
# Steps represent a sequence of tasks that will be executed as part of the job
2121
steps:
2222
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2323
- uses: actions/checkout@v2
2424

2525
- name: Install dependencies
26-
run: sudo apt install libgtk2.0-dev libprocps-dev
26+
run: |
27+
sudo apt update
28+
sudo apt install libgtk2.0-dev libprocps-dev
2729
2830
- name: Build .deb package
2931
run: make deb

0 commit comments

Comments
 (0)