Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e7f523c

Browse files
committedOct 14, 2024·
ci: fixes for latest ubuntu-latest image
Signed-off-by: Erik Larsson <[email protected]>
1 parent 66acdbd commit e7f523c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed
 

‎.ci/install-deps.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y \
4141
libtasn1-6-dev \
4242
socat \
4343
libseccomp-dev \
44-
libjson-glib-dev
44+
libjson-glib-dev \
45+
libltdl-dev
4546

4647
#
4748
# Install tpm2-tss

‎.github/workflows/tests.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: ./.ci/run.sh
3939

4040
coverage:
41-
runs-on: ubuntu-20.04
41+
runs-on: ubuntu-latest
4242

4343
steps:
4444
- name: Checkout Repository
@@ -85,8 +85,8 @@ jobs:
8585

8686
- name: Install Dependencies
8787
run: |
88-
python3 -m pip install --user --upgrade pip
89-
python3 -m pip install --user --upgrade black==19.10b0
88+
python3 -m pip install --user --break-system-packages --upgrade pip
89+
python3 -m pip install --user --break-system-packages --upgrade click<8.1.0 black==19.10b0
9090
9191
- name: Check
9292
env:

0 commit comments

Comments
 (0)
Please sign in to comment.